progress_future library

Classes

DataProgressEvent<N extends num, D>
An event produced by changing the progress of DataProgressUpdater and reported by DataProgressFuture.events.
DataProgressFuture<R, N extends num, D>
A Future that reports the progress of its completion and intermediate data.
DataProgressUpdater<N extends num, D>
A sink for the code wrapped in DataProgressFuture to report its progress and intermediate data.
ProgressEvent<N extends num>
An event produced by changing the progress of ProgressUpdater and reported by ProgressFuture.events.
ProgressFuture<R, N extends num>
A Future that reports the progress of its completion.
ProgressUpdater<N extends num>
A sink for the code wrapped in ProgressFuture to report its progress.

Typedefs

DataDoubleProgressFuture<R, D> = DataProgressFuture<R, double, D>
A Future that reports the progress of its completion as a double and intermediate data.
DataDoubleProgressUpdater<D> = DataProgressUpdater<double, D>
A sink for the code wrapped in DoubleProgressFuture to report its progress and intermediate data.
DataIntProgressFuture<R, D> = DataProgressFuture<R, int, D>
A Future that reports the progress of its completion as an integer and intermediate data.
DataIntProgressUpdater<D> = DataProgressUpdater<int, D>
A sink for the code wrapped in DataIntProgressFuture to report its progress.
DoubleProgressFuture<R> = ProgressFuture<R, double>
A Future that reports the progress of its completion as a double.
DoubleProgressUpdater = ProgressUpdater<double>
A sink for the code wrapped in DoubleProgressFuture to report its progress.
IntProgressFuture<R> = ProgressFuture<R, int>
A Future that reports the progress of its completion as an integer.
IntProgressUpdater = ProgressUpdater<int>
A sink for the code wrapped in IntProgressFuture to report its progress.