Uses of Interface
org.red5.server.api.service.IPendingServiceCall
-
Packages that use IPendingServiceCall Package Description org.red5.server.api.service org.red5.server.net.rtmp org.red5.server.net.rtmp.event org.red5.server.service org.red5.server.stream.bandwidth -
-
Uses of IPendingServiceCall in org.red5.server.api.service
Methods in org.red5.server.api.service with parameters of type IPendingServiceCall Modifier and Type Method Description void
IPendingServiceCallback. resultReceived(IPendingServiceCall call)
Triggered when results are recieved -
Uses of IPendingServiceCall in org.red5.server.net.rtmp
Fields in org.red5.server.net.rtmp with type parameters of type IPendingServiceCall Modifier and Type Field Description protected ConcurrentMap<Integer,IPendingServiceCall>
RTMPConnection. pendingCalls
Hash map that stores pending calls and ids as pairs.Methods in org.red5.server.net.rtmp that return IPendingServiceCall Modifier and Type Method Description IPendingServiceCall
RTMPConnection. getPendingCall(int invokeId)
Get pending call service by id.IPendingServiceCall
RTMPConnection. retrievePendingCall(int invokeId)
Retrieves and removes the pending call service by id.Methods in org.red5.server.net.rtmp with parameters of type IPendingServiceCall Modifier and Type Method Description void
RTMPConnection. registerPendingCall(int invokeId, IPendingServiceCall call)
Register pending call (remote function call that is yet to finish).void
DeferredResult. setServiceCall(IPendingServiceCall call)
Setter for service call. -
Uses of IPendingServiceCall in org.red5.server.net.rtmp.event
Methods in org.red5.server.net.rtmp.event that return IPendingServiceCall Modifier and Type Method Description IPendingServiceCall
Invoke. getCall()
Getter for service callConstructors in org.red5.server.net.rtmp.event with parameters of type IPendingServiceCall Constructor Description Invoke(IPendingServiceCall call)
Create new invocation event with given pending service call -
Uses of IPendingServiceCall in org.red5.server.service
Classes in org.red5.server.service that implement IPendingServiceCall Modifier and Type Class Description class
PendingCall
Pending call is remote call operation that is in pending state. -
Uses of IPendingServiceCall in org.red5.server.stream.bandwidth
Methods in org.red5.server.stream.bandwidth with parameters of type IPendingServiceCall Modifier and Type Method Description void
ClientServerDetection. resultReceived(IPendingServiceCall call)
Handle callback from service call.void
ServerClientDetection. resultReceived(IPendingServiceCall call)
Handle callback from service call.
-