Scheduler class abstract
Abstract scheduler implementation.
- Implementers
Constructors
- Scheduler()
-
Default constructor of the scheduler.
const
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
schedule(
Callback0 callback) → Disposable -
Schedules a
callback
to be executed. -
scheduleAbsolute(
DateTime dateTime, Callback0 callback) → Disposable -
Schedules a
callback
to be executed at the specifieddateTime
. -
scheduleIteration(
Predicate0 callback) → Disposable -
Schedules a
callback
to be executed while its return value istrue
. -
schedulePeriodic(
Duration duration, Callback1< Disposable> callback) → Disposable -
Schedules a
callback
to be executed periodically everyduration
. -
scheduleRelative(
Duration duration, Callback0 callback) → Disposable -
Schedules a
callback
to be executed after the specifiedduration
. -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited