Uses of Class
org.praxislive.core.Call
-
Packages that use Call Package Description org.praxislive.base org.praxislive.code org.praxislive.core org.praxislive.hub org.praxislive.script org.praxislive.script.impl -
-
Uses of Call in org.praxislive.base
Methods in org.praxislive.base that return Call Modifier and Type Method Description protected Call
AbstractAsyncControl. getActiveCall()
protected Call
AbstractAsyncControl. processError(Call call)
protected abstract Call
AbstractAsyncControl. processInvoke(Call call)
protected Call
AbstractContainer.AddChildControl. processInvoke(Call call)
protected abstract Call
AbstractAsyncControl. processResponse(Call call)
protected Call
AbstractContainer.AddChildControl. processResponse(Call call)
Methods in org.praxislive.base with parameters of type Call Modifier and Type Method Description void
AbstractAsyncControl. call(Call call, PacketRouter router)
void
AbstractContainer.ChildrenControl. call(Call call, PacketRouter router)
void
AbstractContainer.ConnectControl. call(Call call, PacketRouter router)
void
AbstractContainer.ConnectionsControl. call(Call call, PacketRouter router)
void
AbstractContainer.DisconnectControl. call(Call call, PacketRouter router)
void
AbstractContainer.RemoveChildControl. call(Call call, PacketRouter router)
void
AbstractProperty. call(Call call, PacketRouter router)
void
BindingContextControl. call(Call call, PacketRouter router)
protected abstract void
AbstractRoot. processCall(Call call, PacketRouter router)
Method called to handle every receivedCall
.protected void
AbstractRootContainer. processCall(Call call, PacketRouter router)
protected Call
AbstractAsyncControl. processError(Call call)
protected abstract Call
AbstractAsyncControl. processInvoke(Call call)
protected Call
AbstractContainer.AddChildControl. processInvoke(Call call)
protected abstract Call
AbstractAsyncControl. processResponse(Call call)
protected Call
AbstractContainer.AddChildControl. processResponse(Call call)
-
Uses of Call in org.praxislive.code
Methods in org.praxislive.code that return types with arguments of type Call Modifier and Type Method Description Async<Call>
CodeDelegate. ask(ControlAddress destination, Object... args)
Call a Control.Async<Call>
CodeDelegate. ask(ControlAddress destination, List<Value> args)
Call a Control.Methods in org.praxislive.code with parameters of type Call Modifier and Type Method Description void
AbstractAsyncProperty. call(Call call, PacketRouter router)
void
AbstractBasicProperty. call(Call call, PacketRouter router)
Deprecated.void
InfoProperty. call(Call call, PacketRouter router)
void
PropertyControl. call(Call call, PacketRouter router)
void
SharedCodeProperty. call(Call call, PacketRouter router)
void
TriggerControl. call(Call call, PacketRouter router)
-
Uses of Call in org.praxislive.core
Methods in org.praxislive.core that return Call Modifier and Type Method Description static Call
Call. create(ControlAddress toAddress, ControlAddress fromAddress, long timeCode)
Create a Call with Type INVOKE and empty arguments.static Call
Call. create(ControlAddress toAddress, ControlAddress fromAddress, long timeCode, List<Value> args)
Create a Call with Type INVOKE.static Call
Call. create(ControlAddress toAddress, ControlAddress fromAddress, long timeCode, Value arg)
Create a Call with Type INVOKE.static Call
Call. createQuiet(ControlAddress toAddress, ControlAddress fromAddress, long timeCode)
Create a Call with Type INVOKE_QUIET and empty empty arguments.static Call
Call. createQuiet(ControlAddress toAddress, ControlAddress fromAddress, long timeCode, List<Value> args)
Create a Call with Type INVOKE_QUIET.static Call
Call. createQuiet(ControlAddress toAddress, ControlAddress fromAddress, long timeCode, Value arg)
Create a Call with Type INVOKE_QUIET.Call
Call. error(List<Value> args)
Create an error return Call for this call, with the given arguments.Call
Call. error(PError error)
Create an error return Call for this call, with the given error argument.Call
Call. reply()
Create a return Call for this call having no arguments.Call
Call. reply(List<Value> args)
Create a return Call for this call with the given arguments.Call
Call. reply(Value arg)
Create a return Call for this call with the given argument.Methods in org.praxislive.core with parameters of type Call Modifier and Type Method Description void
Control. call(Call call, PacketRouter router)
-
Uses of Call in org.praxislive.hub
Methods in org.praxislive.hub with parameters of type Call Modifier and Type Method Description protected void
BasicCoreRoot. processCall(Call call, PacketRouter router)
-
Uses of Call in org.praxislive.script
Methods in org.praxislive.script with parameters of type Call Modifier and Type Method Description void
StackFrame. postResponse(Call call)
-
Uses of Call in org.praxislive.script.impl
Methods in org.praxislive.script.impl that return Call Modifier and Type Method Description protected abstract Call
AbstractSingleCallFrame. createCall(Env env, List<Value> args)
Methods in org.praxislive.script.impl with parameters of type Call Modifier and Type Method Description void
AbstractSingleCallFrame. postResponse(Call response)
protected void
ScriptServiceImpl. processCall(Call call, PacketRouter router)
void
ScriptExecutor. processScriptCall(Call call)
void
ScriptExecutor. queueEvalCall(Call call)
-