CancelableEventSchedule Method |
Schedule a new event.
Namespace: Demo3D.EventQueueAssembly: Demo3D.EventQueue (in Demo3D.EventQueue.dll) Version: 19.00.00
Syntaxpublic Event Schedule(
Dispatcher dispatcher,
Fixed secondsFromNow,
Action action,
Object? description = null
)
Parameters
- dispatcher Dispatcher
- Dispatcher to schedule the event on.
- secondsFromNow Fixed
- Duration in seconds relative to Dispatcher.Time to invoke the action.
- action Action
- The action to event after secondsFrom now.
- description Object (Optional)
- An object that describes the event.
Return Value
EventNew scheduled event.
See Also