Package com.eventstore.dbclient
Class SubscribePersistentSubscriptionOptions
- java.lang.Object
-
- com.eventstore.dbclient.SubscribePersistentSubscriptionOptions
-
public class SubscribePersistentSubscriptionOptions extends java.lang.ObjectOptions of the subscribe persistent subscription request.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Tauthenticated(UserCredentials credentials)Sets user credentials for the requestTauthenticated(java.lang.String login, java.lang.String password)Sets user credentials for the requestSubscribePersistentSubscriptionOptionsbufferSize(int value)Persistent subscription's buffer size.Tdeadline(long durationInMs)A length of time (in milliseconds) to use for gRPC deadlines.static SubscribePersistentSubscriptionOptionsget()Returns options with default values.TnotRequireLeader()Do not require the request to be performed by the leader of the cluster.TrequiresLeader()Requires the request to be performed by the leader of the cluster.TrequiresLeader(boolean value)If true, requires the request to be performed by the leader of the cluster.
-
-
-
Method Detail
-
get
public static SubscribePersistentSubscriptionOptions get()
Returns options with default values.
-
bufferSize
public SubscribePersistentSubscriptionOptions bufferSize(int value)
Persistent subscription's buffer size.
-
authenticated
public T authenticated(UserCredentials credentials)
Sets user credentials for the request- Parameters:
credentials-- Returns:
- updated options
- See Also:
UserCredentials
-
authenticated
public T authenticated(java.lang.String login, java.lang.String password)Sets user credentials for the request- Parameters:
login-password-- Returns:
- updated options
-
requiresLeader
public T requiresLeader()
Requires the request to be performed by the leader of the cluster.- Returns:
- updated options
-
notRequireLeader
public T notRequireLeader()
Do not require the request to be performed by the leader of the cluster.- Returns:
- updated options
-
requiresLeader
public T requiresLeader(boolean value)
If true, requires the request to be performed by the leader of the cluster.- Parameters:
value-- Returns:
- updated options
-
deadline
public T deadline(long durationInMs)
A length of time (in milliseconds) to use for gRPC deadlines.- Parameters:
durationInMs-- Returns:
-
-