Progress

trait Progress[Tx] extends Observable[Tx, Double]
trait Observable[Tx, Double]
class Object
trait Matchable
class Any
object progress
object progress
object progress
object progress
object progress

Value members

Abstract methods

def current(implicit tx: Tx): Double

Zero to one. Note: negative numbers indicate indeterminate progress

Zero to one. Note: negative numbers indicate indeterminate progress

Inherited methods

def react(fun: Tx => Double => Unit)(implicit tx: Tx): Disposable[Tx]

Registers a live observer with this observable. The method is called with the observing function which receives the observable's update message of type A, and the method generates an opaque Disposable instance, which may be used to remove the observer eventually (through the dispose method).

Registers a live observer with this observable. The method is called with the observing function which receives the observable's update message of type A, and the method generates an opaque Disposable instance, which may be used to remove the observer eventually (through the dispose method).

Inherited from
Observable