Runner class abstract

Implemented types
Implementers

Constructors

Runner(Duration interval)

Properties

hashCode int
The hash code for this object.
no setterinherited
interval Duration
final
isRunning bool
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

finish() Future<void>
Cleanup after handled
override
handle() Future<void>
Handling run loop
override
idle() Future<void>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
process() Future<bool>
Do the job
inherited
run() Future<void>
Run in a thread
override
setup() Future<void>
Prepare for handling
override
stop() Future<void>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

INTERVAL_FAST Duration
getter/setter pair
INTERVAL_NORMAL Duration
getter/setter pair
INTERVAL_SLOW Duration
getter/setter pair

Static Methods

sleep(Duration duration) Future<void>