Class PendingCall

java.lang.Object
org.red5.server.service.Call
org.red5.server.service.PendingCall
All Implemented Interfaces:
IExternalizable, IPendingServiceCall, IServiceCall

public class PendingCall extends Call implements IPendingServiceCall
Pending call is remote call operation that is in pending state. Remote calls to services are asynchronous, that is, after call but before result callback remote calls are in pending state.
Author:
mondain
  • Constructor Details

    • PendingCall

      public PendingCall()

      Constructor for PendingCall.

    • PendingCall

      public PendingCall(String method)
      Creates pending call with given method name
      Parameters:
      method - Method name
    • PendingCall

      public PendingCall(String method, Object[] args)
      Creates pending call with given method name and array of parameters
      Parameters:
      method - Method name
      args - Parameters
    • PendingCall

      public PendingCall(String name, String method, Object[] args)
      Creates pending call with given method name, service name and array of parameters
      Parameters:
      name - Service name
      method - Method name
      args - Parameters
  • Method Details