Package org.redisson.remote
Class RemoteServiceRequest
- java.lang.Object
-
- org.redisson.remote.RemoteServiceRequest
-
- All Implemented Interfaces:
Serializable
public class RemoteServiceRequest extends Object implements Serializable
- Author:
- Nikita Koksharov
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RemoteServiceRequest()
RemoteServiceRequest(String id)
RemoteServiceRequest(String executorId, String id, String methodName, long[] signature, Object[] args, RemoteInvocationOptions options, long date)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object[]
getArgs()
long
getDate()
String
getExecutorId()
String
getId()
String
getMethodName()
RemoteInvocationOptions
getOptions()
long[]
getSignature()
String
toString()
-
-
-
Constructor Detail
-
RemoteServiceRequest
public RemoteServiceRequest()
-
RemoteServiceRequest
public RemoteServiceRequest(String id)
-
RemoteServiceRequest
public RemoteServiceRequest(String executorId, String id, String methodName, long[] signature, Object[] args, RemoteInvocationOptions options, long date)
-
-
Method Detail
-
getDate
public long getDate()
-
getExecutorId
public String getExecutorId()
-
getId
public String getId()
-
getArgs
public Object[] getArgs()
-
getSignature
public long[] getSignature()
-
getOptions
public RemoteInvocationOptions getOptions()
-
getMethodName
public String getMethodName()
-
-