Click or drag to resize

CancelableEventSchedule Method

Schedule a new event.

Namespace: Demo3D.EventQueue
Assembly: Demo3D.EventQueue (in Demo3D.EventQueue.dll) Version: 19.00.00
Syntax
C#
public 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

Event
New scheduled event.
See Also