Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Tracker ¶
type Tracker interface {
// AddTask function should add task progress of which should be displayed.
AddTask(name string, title string, total uint64)
// UpdateProgress function should update progress of tracked task.
UpdateProgress(name string, progress usecase.Progress)
// Wait function should wait for all tracked tasks to complete.
Wait()
}
Tracker interface implementation should display progress of tasks.
Click to show internal directories.
Click to hide internal directories.