Uses of Class
org.redisson.api.RemoteInvocationOptions
-
Packages that use RemoteInvocationOptions Package Description org.redisson.api org.redisson.remote -
-
Uses of RemoteInvocationOptions in org.redisson.api
Methods in org.redisson.api that return RemoteInvocationOptions Modifier and Type Method Description static RemoteInvocationOptions
RemoteInvocationOptions. defaults()
Creates a new instance of RemoteInvocationOptions with opinionated defaults.RemoteInvocationOptions
RemoteInvocationOptions. expectAckWithin(long ackTimeoutInMillis)
Defines ACK timeoutRemoteInvocationOptions
RemoteInvocationOptions. expectAckWithin(long ackTimeout, TimeUnit timeUnit)
Defines ACK timeoutRemoteInvocationOptions
RemoteInvocationOptions. expectResultWithin(long executionTimeoutInMillis)
Defines execution timeoutRemoteInvocationOptions
RemoteInvocationOptions. expectResultWithin(long executionTimeout, TimeUnit timeUnit)
Defines execution timeoutRemoteInvocationOptions
RemoteInvocationOptions. noAck()
Specifies to not wait for ACK replyRemoteInvocationOptions
RemoteInvocationOptions. noResult()
Specifies to not wait for resultMethods in org.redisson.api with parameters of type RemoteInvocationOptions Modifier and Type Method Description <T> T
RRemoteService. get(Class<T> remoteInterface, RemoteInvocationOptions options)
Get remote service object for remote invocations with the specified optionsConstructors in org.redisson.api with parameters of type RemoteInvocationOptions Constructor Description RemoteInvocationOptions(RemoteInvocationOptions copy)
-
Uses of RemoteInvocationOptions in org.redisson.remote
Methods in org.redisson.remote that return RemoteInvocationOptions Modifier and Type Method Description RemoteInvocationOptions
RemoteServiceRequest. getOptions()
Methods in org.redisson.remote with parameters of type RemoteInvocationOptions Modifier and Type Method Description protected void
AsyncRemoteProxy. awaitResultAsync(RemoteInvocationOptions optionsCopy, RemotePromise<Object> result, RFuture<RRemoteServiceResponse> responseFuture)
<T> T
AsyncRemoteProxy. create(Class<T> remoteInterface, RemoteInvocationOptions options, Class<?> syncInterface)
<T> T
SyncRemoteProxy. create(Class<T> remoteInterface, RemoteInvocationOptions options)
<T> T
BaseRemoteService. get(Class<T> remoteInterface, RemoteInvocationOptions options)
protected RFuture<RemoteServiceAck>
BaseRemoteProxy. tryPollAckAgainAsync(RemoteInvocationOptions optionsCopy, String ackName, RequestId requestId)
Constructors in org.redisson.remote with parameters of type RemoteInvocationOptions Constructor Description RemoteServiceRequest(String executorId, String id, String methodName, long[] signature, Object[] args, RemoteInvocationOptions options, long date)
-