Class: Kotoshu::Cli::ProgressReporter::Null
- Inherits:
-
Object
- Object
- Kotoshu::Cli::ProgressReporter::Null
- Defined in:
- lib/kotoshu/cli/progress_reporter.rb
Overview
Null-object variant. Use when callers want to silence progress (e.g., quiet mode or programmatic API).
Instance Method Summary collapse
- #finish ⇒ Object
- #maybe_report_periodic ⇒ Object
- #start(_total_bytes) ⇒ Object
- #update(_received_bytes) ⇒ Object
Instance Method Details
#finish ⇒ Object
74 |
# File 'lib/kotoshu/cli/progress_reporter.rb', line 74 def finish; end |
#maybe_report_periodic ⇒ Object
73 |
# File 'lib/kotoshu/cli/progress_reporter.rb', line 73 def maybe_report_periodic; end |
#start(_total_bytes) ⇒ Object
71 |
# File 'lib/kotoshu/cli/progress_reporter.rb', line 71 def start(_total_bytes); end |
#update(_received_bytes) ⇒ Object
72 |
# File 'lib/kotoshu/cli/progress_reporter.rb', line 72 def update(_received_bytes); end |