|
Anark Core SDK
|
An interface for tracking progress of a task. More...
Public Member Functions | |
| void | Init (long numberOfItems) |
| Use this to tell the progress tracker how much work is anticipated. | |
| void | FinishedItem () |
| Call this each time an item is processed. | |
| void | SetNumberOfItemsFinished (long numFinished) |
| Use this only for random access scenarios such as when progress could move backward. | |
| void | SetStatus (string value) |
| Set a status message to indicate to the user what is occurring. | |
An interface for tracking progress of a task.
| void Anark.CoreSdkApi.ISdkProgressTracker.FinishedItem | ( | ) |
Call this each time an item is processed.
Implemented in Anark.CoreSdkApi.SdkProgressTracker.
| void Anark.CoreSdkApi.ISdkProgressTracker.Init | ( | long | numberOfItems | ) |
Use this to tell the progress tracker how much work is anticipated.
| numberOfItems | The number of items to be processed. |
Implemented in Anark.CoreSdkApi.SdkProgressTracker.
| void Anark.CoreSdkApi.ISdkProgressTracker.SetNumberOfItemsFinished | ( | long | numFinished | ) |
Use this only for random access scenarios such as when progress could move backward.
Implemented in Anark.CoreSdkApi.SdkProgressTracker.
| void Anark.CoreSdkApi.ISdkProgressTracker.SetStatus | ( | string | value | ) |
Set a status message to indicate to the user what is occurring.
| value | The status message. |
Implemented in Anark.CoreSdkApi.SdkProgressTracker.