Click or drag to resize

DispatcherScheduleAction(Fixed, FuncITask, Object) Method

Schedule a coroutine to be invoked in the future.

Namespace: Demo3D.EventQueue
Assembly: Demo3D.EventQueue (in Demo3D.EventQueue.dll) Version: 19.00.00
Syntax
C#
public ITask ScheduleAction(
	Fixed secondsFromNow,
	Func<ITask> continuation,
	Object description
)

Parameters

secondsFromNow  Fixed

[Missing <param name="secondsFromNow"/> documentation for "M:Demo3D.EventQueue.Dispatcher.ScheduleAction(Demo3D.EventQueue.Fixed,System.Func{Demo3D.EventQueue.ITask},System.Object)"]

continuation  FuncITask

[Missing <param name="continuation"/> documentation for "M:Demo3D.EventQueue.Dispatcher.ScheduleAction(Demo3D.EventQueue.Fixed,System.Func{Demo3D.EventQueue.ITask},System.Object)"]

description  Object

[Missing <param name="description"/> documentation for "M:Demo3D.EventQueue.Dispatcher.ScheduleAction(Demo3D.EventQueue.Fixed,System.Func{Demo3D.EventQueue.ITask},System.Object)"]

Return Value

ITask
The task representing the running coroutine, which can be canceled.
See Also