Uses of Class
org.praxislive.core.Call
Packages that use Call
Package
Description
-
Uses of Call in org.praxislive.base
Methods in org.praxislive.base that return CallModifier and TypeMethodDescriptionprotected CallAbstractAsyncControl.getActiveCall()protected CallAbstractAsyncControl.processError(Call call) protected abstract CallAbstractAsyncControl.processInvoke(Call call) protected CallAbstractContainer.AddChildControl.processInvoke(Call call) protected abstract CallAbstractAsyncControl.processResponse(Call call) protected CallAbstractContainer.AddChildControl.processResponse(Call call) Methods in org.praxislive.base with parameters of type CallModifier and TypeMethodDescriptionvoidAbstractAsyncControl.call(Call call, PacketRouter router) voidAbstractContainer.ChildrenControl.call(Call call, PacketRouter router) voidAbstractContainer.ConnectControl.call(Call call, PacketRouter router) voidAbstractContainer.ConnectionsControl.call(Call call, PacketRouter router) voidAbstractContainer.DisconnectControl.call(Call call, PacketRouter router) voidAbstractContainer.RemoveChildControl.call(Call call, PacketRouter router) voidAbstractProperty.call(Call call, PacketRouter router) voidBindingContextControl.call(Call call, PacketRouter router) voidMetaProperty.call(Call call, PacketRouter router) protected abstract voidAbstractRoot.processCall(Call call, PacketRouter router) Method called to handle every receivedCall.protected voidAbstractRootContainer.processCall(Call call, PacketRouter router) protected CallAbstractAsyncControl.processError(Call call) protected abstract CallAbstractAsyncControl.processInvoke(Call call) protected CallAbstractContainer.AddChildControl.processInvoke(Call call) protected abstract CallAbstractAsyncControl.processResponse(Call call) protected CallAbstractContainer.AddChildControl.processResponse(Call call) -
Uses of Call in org.praxislive.code
Methods in org.praxislive.code that return types with arguments of type CallModifier and TypeMethodDescriptionCall a Control on a Service.CodeDelegate.ask(ControlAddress destination, Object... args) Call a Control.CodeDelegate.ask(ControlAddress destination, List<Value> args) Call a Control.Methods in org.praxislive.code with parameters of type CallModifier and TypeMethodDescriptionvoidAbstractAsyncProperty.call(Call call, PacketRouter router) voidInfoProperty.call(Call call, PacketRouter router) voidPropertyControl.call(Call call, PacketRouter router) voidSharedCodeProperty.call(Call call, PacketRouter router) voidTriggerControl.call(Call call, PacketRouter router) -
Uses of Call in org.praxislive.code.userapi
Method parameters in org.praxislive.code.userapi with type arguments of type CallModifier and TypeMethodDescriptionstatic <T> Async<T> Async.extractArg(Async<Call> asyncCall, Class<T> type) Create an Async that will complete when the provided async call completes, by extracting the first call argument and attempting to map to the given type.static <T> Async<T> Async.extractArg(Async<Call> asyncCall, Class<T> type, int argIdx) Create an Async that will complete when the provided async call completes, by extracting the indexed call argument and attempting to map to the given type.Async.extractArgs(Async<Call> asyncCall) Create an Async that will complete when the provided async call completes, by extracting the call arguments. -
Uses of Call in org.praxislive.core
Methods in org.praxislive.core that return CallModifier and TypeMethodDescriptionstatic CallCall.create(ControlAddress toAddress, ControlAddress fromAddress, long timeCode) Create a Call with Type INVOKE and empty arguments.static CallCall.create(ControlAddress toAddress, ControlAddress fromAddress, long timeCode, List<Value> args) Create a Call with Type INVOKE.static CallCall.create(ControlAddress toAddress, ControlAddress fromAddress, long timeCode, Value arg) Create a Call with Type INVOKE.static CallCall.createQuiet(ControlAddress toAddress, ControlAddress fromAddress, long timeCode) Create a Call with Type INVOKE_QUIET and empty empty arguments.static CallCall.createQuiet(ControlAddress toAddress, ControlAddress fromAddress, long timeCode, List<Value> args) Create a Call with Type INVOKE_QUIET.static CallCall.createQuiet(ControlAddress toAddress, ControlAddress fromAddress, long timeCode, Value arg) Create a Call with Type INVOKE_QUIET.Create an error return Call for this call, with the given arguments.Create an error return Call for this call, with the given error argument.Call.reply()Create a return Call for this call having no arguments.Create a return Call for this call with the given arguments.Create a return Call for this call with the given argument.Methods in org.praxislive.core with parameters of type Call -
Uses of Call in org.praxislive.hub
Methods in org.praxislive.hub with parameters of type CallModifier and TypeMethodDescriptionprotected voidBasicCoreRoot.processCall(Call call, PacketRouter router) -
Uses of Call in org.praxislive.script
Methods in org.praxislive.script that return CallModifier and TypeMethodDescriptionprotected abstract CallAbstractSingleCallFrame.createCall(Env env, List<Value> args) Create the Call.Methods in org.praxislive.script with parameters of type CallModifier and TypeMethodDescriptionfinal voidAbstractSingleCallFrame.postResponse(Call response) voidInlineCommand.InlineStackFrame.postResponse(Call call) voidScriptStackFrame.postResponse(Call call) voidStackFrame.postResponse(Call call) Used by the script executor to post the result of a Call.protected voidDefaultScriptService.processCall(Call call, PacketRouter router)