Class RemoteCall

java.lang.Object
com.basis.api.admin.RemoteCall
All Implemented Interfaces:
Serializable

public class RemoteCall extends Object implements Serializable
Represents a single call to a remote server including the type of call, the method name, and the parameters.
See Also:
  • Field Details

  • Constructor Details

    • RemoteCall

      public RemoteCall()
      Typically used to create an empty instance that will be populated by a call to readObject().
    • RemoteCall

      public RemoteCall(int p_type, String p_methodName, Object[] p_parameters)
      Typically called to create an instance with all the necessary information that will be sent to a server with a call to the send() method.
      Parameters:
      p_type - Type of call.
      p_methodName - Name of method to call.
      p_parameters - Parameters to pass to the method call.
  • Method Details