com.pnfsoftware.jeb.util.base.IProgressCallback |
![]() |
Progress callback object. Methods involving lengthy operations (referred to as 'provider') sometimes accept such objects and use them to provide progress information to the caller (referred to as 'client').
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract long | getCurrent() | ||||||||||
abstract long | getTotal() | ||||||||||
abstract long | increment() | ||||||||||
abstract boolean |
isInitialized()
Determine whether this object is initialized.
| ||||||||||
abstract void |
message(String msg)
This method is used by the provider to send a transient message to its client.
| ||||||||||
abstract void |
setCurrent(long current)
This method is called by a provider to update the current computation count.
| ||||||||||
abstract void |
setTotal(long total)
This method called by a provider (generally once) to set an initial (possibly estimate)
computation count.
| ||||||||||
abstract void |
updateTotal(long count)
Set or update the total by the provided unit amount.
|
Determine whether this object is initialized.
This method is used by the provider to send a transient message to its client.
This method is called by a provider to update the current computation count. Together with the total count, a client may compute an estimated completion ratio.
This method called by a provider (generally once) to set an initial (possibly estimate) computation count. The number in itself is arbitrary.
Set or update the total by the provided unit amount. If the total had
been set
, it is updated; else, it is set.