Uses of Class
com.couchbase.client.dcp.core.time.Delay
Packages that use Delay
Package
Description
-
Uses of Delay in com.couchbase.client.dcp
Methods in com.couchbase.client.dcp with parameters of type DelayModifier and TypeMethodDescriptionClient.Builder.dcpChannelsReconnectDelay(Delay ignored) Deprecated.Doesn't do anything. -
Uses of Delay in com.couchbase.client.dcp.core.time
Subclasses of Delay in com.couchbase.client.dcp.core.timeModifier and TypeClassDescriptionclassDelay which increases exponentially on every attempt.classDelay which is fixed for every attempt.classDelay which increases linearly for every attempt.Methods in com.couchbase.client.dcp.core.time that return DelayModifier and TypeMethodDescriptionstatic DelayDelay.exponential(TimeUnit unit) Creates a newExponentialDelaywith default boundaries and factor (1, 2, 4, 8, 16, 32...).static DelayDelay.exponential(TimeUnit unit, long upper) Creates a newExponentialDelaywith custom upper boundary and default factor (eg.static DelayDelay.exponential(TimeUnit unit, long upper, long lower) Creates a newExponentialDelaywith custom boundaries and default factor (eg.static DelayDelay.exponential(TimeUnit unit, long upper, long lower, long growBy) Creates a newExponentialDelaywith custom boundaries and factor (eg.static DelayDelay.exponential(TimeUnit unit, long upper, long lower, long growBy, int powersOf) Creates a newExponentialDelayon a base different from powers of two, with custom boundaries and factor (eg.static DelayCreates a newFixedDelay.static DelayCreates a newLinearDelaywith no bounds and default factor.static DelayCreates a newLinearDelaywith a custom upper boundary and the default factor.static DelayCreates a newLinearDelaywith a custom boundaries and the default factor.static DelayCreates a newLinearDelaywith a custom boundaries and factor. -
Uses of Delay in com.couchbase.client.dcp.util
Constructors in com.couchbase.client.dcp.util with parameters of type Delay