Table of Contents

Class SchedulerExecutableLibrary

Namespace
Ceres.Graph.Flow.Utilities
Assembly
cs.temp.dll.dll

Executable function library for Chris.Schedulers

public class SchedulerExecutableLibrary : ExecutableFunctionLibrary
Inheritance
object
SchedulerExecutableLibrary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()

Methods

Flow_SchedulerCancel(SchedulerHandle)

Cancel a scheduled task if is valid.

public static void Flow_SchedulerCancel(SchedulerHandle handle)

Parameters

handle SchedulerHandle

Flow_SchedulerDelay(float, EventDelegate, EventDelegate<float>, TickFrame, bool, bool)

Delay some time and invoke callBack.

public static SchedulerHandle Flow_SchedulerDelay(float delaySeconds, EventDelegate onComplete, EventDelegate<float> onUpdate, TickFrame tickFrame, bool isLooped, bool ignoreTimeScale)

Parameters

delaySeconds float
onComplete EventDelegate
onUpdate EventDelegate<float>
tickFrame TickFrame
isLooped bool
ignoreTimeScale bool

Returns

SchedulerHandle

Flow_SchedulerWaitFrame(int, EventDelegate, EventDelegate<int>, TickFrame, bool)

Wait some frames and invoke callBack.

public static SchedulerHandle Flow_SchedulerWaitFrame(int frame, EventDelegate onComplete, EventDelegate<int> onUpdate, TickFrame tickFrame, bool isLooped)

Parameters

frame int
onComplete EventDelegate
onUpdate EventDelegate<int>
tickFrame TickFrame
isLooped bool

Returns

SchedulerHandle