Interface Scheduler
Mechanism for scheduling binding invocations. Must be implemented for the target run-time to provide efficient batching.
Scheduler
Namespace: TinkState
Assembly: Nadako.TinkState.dll
Syntax
public interface Scheduler
Fields
Direct
Simple scheduler that directly invokes given Schedulable objects.
Declaration
public static readonly Scheduler Direct
Field Value
Type | Description |
---|---|
Scheduler |
Methods
Schedule(Schedulable)
Schedule given Schedulable (e.g. an observable binding) for invocation.
Declaration
void Schedule(Schedulable schedulable)
Parameters
Type | Name | Description |
---|---|---|
Schedulable | schedulable | A schedulable object to invoke. |