|
Anark Core SDK
|
Public Member Functions | |||
| SdkProgressTracker (ProgressTracker progressTracker) | |||
| Initialize a new progress tracker. | |||
| 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.
| |||
|
inline |
Initialize a new progress tracker.
| progressTracker | Internal Anark Core progress tracker. |
|
inline |
Call this each time an item is processed.
Implements Anark.CoreSdkApi.ISdkProgressTracker.
|
inline |
Use this to tell the progress tracker how much work is anticipated.
| numberOfItems | The number of items to be processed. |
Implements Anark.CoreSdkApi.ISdkProgressTracker.
|
inline |
Use this only for random access scenarios such as when progress could move backward.
Implements Anark.CoreSdkApi.ISdkProgressTracker.
|
inline |
Set a status message to indicate to the user what is occurring.
| value | The status message. |
Implements Anark.CoreSdkApi.ISdkProgressTracker.