Uses of Interface
org.red5.server.api.service.IPendingServiceCallback
Package
Description
-
Uses of IPendingServiceCallback in org.red5.server.api.service
Modifier and TypeMethodDescriptionIPendingServiceCall.getCallbacks()
Returns list of callback objects, usually callback object represented as an anonymous class instance that implements IPendingServiceCallback interface.Modifier and TypeMethodDescriptionvoid
IServiceCapableConnection.invoke
(String method, Object[] params, IPendingServiceCallback callback) Invoke method with parameters.void
IServiceCapableConnection.invoke
(String method, IPendingServiceCallback callback) Invoke method by name with callback.static void
ServiceUtils.invokeOnAllConnections
(String method, Object[] params, IPendingServiceCallback callback) Invoke a method on all connections to the current scope and handle result.static void
ServiceUtils.invokeOnAllConnections
(IScope scope, String method, Object[] params, IPendingServiceCallback callback) Invoke a method on all connections to a given scope and handle result.static void
ServiceUtils.invokeOnAllScopeConnections
(IScope scope, String method, Object[] params, IPendingServiceCallback callback) Invoke a method on all connections of a scope and handle result.static void
ServiceUtils.invokeOnClient
(IClient client, IScope scope, String method, Object[] params, IPendingServiceCallback callback) Deprecated.static boolean
ServiceUtils.invokeOnConnection
(String method, Object[] params, IPendingServiceCallback callback) Invoke a method on the current connection and handle result.static boolean
ServiceUtils.invokeOnConnection
(IConnection conn, String method, Object[] params, IPendingServiceCallback callback) Invoke a method on a given connection and handle result.void
IPendingServiceCall.registerCallback
(IPendingServiceCallback callback) Registers callback object usually represented as an anonymous class instance that implements IPendingServiceCallback interface.void
IPendingServiceCall.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
Modifier and TypeMethodDescriptionvoid
RTMPConnection.invoke
(String method, Object[] params, IPendingServiceCallback callback) Invoke method with parameters.void
RTMPConnection.invoke
(String method, IPendingServiceCallback callback) Invoke method by name with callback. -
Uses of IPendingServiceCallback in org.red5.server.net.rtmp.event
Modifier and TypeFieldDescriptionprivate final IPendingServiceCallback
ClientInvokeEvent.callback
Modifier and TypeMethodDescriptionstatic final ClientInvokeEvent
ClientInvokeEvent.build
(String method, Object[] params, IPendingServiceCallback callback) ModifierConstructorDescriptionClientInvokeEvent
(String method, Object[] params, IPendingServiceCallback callback) -
Uses of IPendingServiceCallback in org.red5.server.service
Modifier and TypeFieldDescriptionprivate HashSet<IPendingServiceCallback>
PendingCall.callbacks
List of callbacks (event listeners)Modifier and TypeMethodDescriptionPendingCall.getCallbacks()
Returns list of callback objects, usually callback object represented as an anonymous class instance that implements IPendingServiceCallback interface.Modifier and TypeMethodDescriptionvoid
PendingCall.registerCallback
(IPendingServiceCallback callback) Registers callback object usually represented as an anonymous class instance that implements IPendingServiceCallback interface.void
PendingCall.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
Modifier and TypeClassDescriptionclass
class
Calculates the bandwidth between the client and server.
ServiceUtils.invokeOnAllScopeConnections(IScope, String, Object[], IPendingServiceCallback)
instead