Click or drag to resize

CancelableEventSchedule Method

Schedule a new event.

Namespace:  Demo3D.EventQueue
Assembly:  Demo3D.EventQueue (in Demo3D.EventQueue.dll) Version: 15.0.2.11458
Syntax
C#
public Event Schedule(
	Dispatcher dispatcher,
	Fixed secondsFromNow,
	Action action,
	Object description = null
)

Parameters

dispatcher
Type: Demo3D.EventQueueDispatcher
Dispatcher to schedule the event on.
secondsFromNow
Type: Demo3D.EventQueueFixed
Duration in seconds relative to Dispatcher.Time to invoke the action.
action
Type: SystemAction
The action to event after secondsFrom now.
description (Optional)
Type: SystemObject
An object that describes the event.

Return Value

Type: Event
New scheduled event.
See Also