Uses of Interface
org.red5.server.api.service.IPendingServiceCallback
Packages that use IPendingServiceCallback
Package
Description
-
Uses of IPendingServiceCallback in org.red5.server.api.service
Methods in org.red5.server.api.service that return types with arguments of type IPendingServiceCallbackModifier and TypeMethodDescriptionIPendingServiceCall.getCallbacks()Returns list of callback objects, usually callback object represented as an anonymous class instance that implements IPendingServiceCallback interface.Methods in org.red5.server.api.service with parameters of type IPendingServiceCallbackModifier and TypeMethodDescriptionvoidIServiceCapableConnection.invoke(String method, Object[] params, IPendingServiceCallback callback) Invoke method with parameters.voidIServiceCapableConnection.invoke(String method, IPendingServiceCallback callback) Invoke method by name with callback.static voidServiceUtils.invokeOnAllConnections(String method, Object[] params, IPendingServiceCallback callback) Invoke a method on all connections to the current scope and handle result.static voidServiceUtils.invokeOnAllConnections(IScope scope, String method, Object[] params, IPendingServiceCallback callback) Invoke a method on all connections to a given scope and handle result.static voidServiceUtils.invokeOnAllScopeConnections(IScope scope, String method, Object[] params, IPendingServiceCallback callback) Invoke a method on all connections of a scope and handle result.static voidServiceUtils.invokeOnClient(IClient client, IScope scope, String method, Object[] params, IPendingServiceCallback callback) Deprecated.static booleanServiceUtils.invokeOnConnection(String method, Object[] params, IPendingServiceCallback callback) Invoke a method on the current connection and handle result.static booleanServiceUtils.invokeOnConnection(IConnection conn, String method, Object[] params, IPendingServiceCallback callback) Invoke a method on a given connection and handle result.voidIPendingServiceCall.registerCallback(IPendingServiceCallback callback) Registers callback object usually represented as an anonymous class instance that implements IPendingServiceCallback interface.voidIPendingServiceCall.unregisterCallback(IPendingServiceCallback callback) Unregisters callback object usually represented as an anonymous class instance that implements IPendingServiceCallback interface. -
Uses of IPendingServiceCallback in org.red5.server.net.rtmp
Methods in org.red5.server.net.rtmp with parameters of type IPendingServiceCallbackModifier and TypeMethodDescriptionvoidRTMPConnection.invoke(String method, Object[] params, IPendingServiceCallback callback) Invoke method with parameters.voidRTMPConnection.invoke(String method, IPendingServiceCallback callback) Invoke method by name with callback. -
Uses of IPendingServiceCallback in org.red5.server.net.rtmp.event
Fields in org.red5.server.net.rtmp.event declared as IPendingServiceCallbackModifier and TypeFieldDescriptionprivate final IPendingServiceCallbackClientInvokeEvent.callbackMethods in org.red5.server.net.rtmp.event that return IPendingServiceCallbackMethods in org.red5.server.net.rtmp.event with parameters of type IPendingServiceCallbackModifier and TypeMethodDescriptionstatic final ClientInvokeEventClientInvokeEvent.build(String method, Object[] params, IPendingServiceCallback callback) Constructors in org.red5.server.net.rtmp.event with parameters of type IPendingServiceCallbackModifierConstructorDescriptionClientInvokeEvent(String method, Object[] params, IPendingServiceCallback callback) -
Uses of IPendingServiceCallback in org.red5.server.service
Fields in org.red5.server.service with type parameters of type IPendingServiceCallbackModifier and TypeFieldDescriptionprivate HashSet<IPendingServiceCallback>PendingCall.callbacksList of callbacks (event listeners)Methods in org.red5.server.service that return types with arguments of type IPendingServiceCallbackModifier and TypeMethodDescriptionPendingCall.getCallbacks()Returns list of callback objects, usually callback object represented as an anonymous class instance that implements IPendingServiceCallback interface.Methods in org.red5.server.service with parameters of type IPendingServiceCallbackModifier and TypeMethodDescriptionvoidPendingCall.registerCallback(IPendingServiceCallback callback) Registers callback object usually represented as an anonymous class instance that implements IPendingServiceCallback interface.voidPendingCall.unregisterCallback(IPendingServiceCallback callback) Unregisters callback object usually represented as an anonymous class instance that implements IPendingServiceCallback interface. -
Uses of IPendingServiceCallback in org.red5.server.stream.bandwidth
Classes in org.red5.server.stream.bandwidth that implement IPendingServiceCallbackModifier and TypeClassDescriptionclassclassCalculates the bandwidth between the client and server.
ServiceUtils.invokeOnAllScopeConnections(IScope, String, Object[], IPendingServiceCallback)instead