Uses of Interface
org.praxislive.core.ExecutionContext
-
Packages that use ExecutionContext Package Description org.praxislive.audio.code org.praxislive.base org.praxislive.code org.praxislive.core org.praxislive.core.code org.praxislive.video.code org.praxislive.video.pgl.code -
-
Uses of ExecutionContext in org.praxislive.audio.code
Methods in org.praxislive.audio.code with parameters of type ExecutionContext Modifier and Type Method Description protected void
AudioCodeContext. starting(ExecutionContext source)
protected void
AudioCodeContext. stopping(ExecutionContext source)
protected void
AudioCodeContext. tick(ExecutionContext source)
-
Uses of ExecutionContext in org.praxislive.base
Classes in org.praxislive.base that implement ExecutionContext Modifier and Type Class Description class
DefaultExecutionContext
Default implementation ofExecutionContext
for use withAbstractRoot
Methods in org.praxislive.base that return ExecutionContext Modifier and Type Method Description protected ExecutionContext
AbstractRoot. getExecutionContext()
Get theExecutionContext
for this Root.Constructors in org.praxislive.base with parameters of type ExecutionContext Constructor Description BindingContextControl(ControlAddress controlAddress, ExecutionContext context, PacketRouter router)
Create a BindingContextControl. -
Uses of ExecutionContext in org.praxislive.code
Methods in org.praxislive.code that return ExecutionContext Modifier and Type Method Description protected ExecutionContext
CodeContext. getExecutionContext()
Get the execution context, or null if not attached.Methods in org.praxislive.code with parameters of type ExecutionContext Modifier and Type Method Description protected void
CodeContext. starting(ExecutionContext source)
Hook called when the execution context is started (moves to stateExecutionContext.State.ACTIVE
) or the context is added to a component within an active execution context.protected void
CodeContext. starting(ExecutionContext source, boolean fullStart)
Hook called when the execution context is started (moves to stateExecutionContext.State.ACTIVE
) or the context is added to a component within an active execution context.protected void
CodeRoot.Context. starting(ExecutionContext source, boolean fullStart)
protected void
CodeContext. stopping(ExecutionContext source)
Hook called when the execution context is stopped (moves away from stateExecutionContext.State.ACTIVE
) or the context is removed from a component within an active execution context.protected void
CodeContext. stopping(ExecutionContext source, boolean fullStop)
Hook called when the execution context is stopped (moves away from stateExecutionContext.State.ACTIVE
) or the context is removed from a component within an active execution context.protected void
CodeRoot.Context. stopping(ExecutionContext source, boolean fullStop)
protected void
CodeContext. tick(ExecutionContext source)
Hook called by the clock listener on the execution context. -
Uses of ExecutionContext in org.praxislive.core
Methods in org.praxislive.core with parameters of type ExecutionContext Modifier and Type Method Description void
ExecutionContext.StateListener. stateChanged(ExecutionContext source)
State changed.void
ExecutionContext.ClockListener. tick(ExecutionContext source)
Called on clock time update. -
Uses of ExecutionContext in org.praxislive.core.code
Methods in org.praxislive.core.code with parameters of type ExecutionContext Modifier and Type Method Description protected void
CoreCodeContext. starting(ExecutionContext source, boolean fullStart)
protected void
CoreCodeContext. stopping(ExecutionContext source, boolean fullStop)
protected void
CoreCodeContext. tick(ExecutionContext source)
-
Uses of ExecutionContext in org.praxislive.video.code
Methods in org.praxislive.video.code with parameters of type ExecutionContext Modifier and Type Method Description protected void
VideoCodeContext. starting(ExecutionContext source, boolean fullStart)
protected void
VideoCodeContext. stopping(ExecutionContext source, boolean fullStop)
protected void
VideoCodeContext. tick(ExecutionContext source)
-
Uses of ExecutionContext in org.praxislive.video.pgl.code
Methods in org.praxislive.video.pgl.code with parameters of type ExecutionContext Modifier and Type Method Description protected void
P2DCodeContext. starting(ExecutionContext source)
void
P3DCodeContext. starting(ExecutionContext source)
protected void
P2DCodeContext. stopping(ExecutionContext source, boolean fullStop)
protected void
P3DCodeContext. stopping(ExecutionContext source, boolean fullStop)
protected void
P2DCodeContext. tick(ExecutionContext source)
protected void
P3DCodeContext. tick(ExecutionContext source)
-