org.tarantool.TarantoolClusterClientConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector Show documentation
Show all versions of connector Show documentation
Tarantool client for java
package org.tarantool;
import java.util.concurrent.Executor;
/**
* Configuration for the {@link TarantoolClusterClient}.
*/
public class TarantoolClusterClientConfig extends TarantoolClientConfig {
/* Amount of time (in milliseconds) the operation is eligible for retry. */
public int operationExpiryTimeMillis = 500;
/* Executor service that will be used as a thread of execution to retry writes. */
public Executor executor = null;
}