Package com.google.api
Interface MethodSettings.LongRunningOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MethodSettings.LongRunning,MethodSettings.LongRunning.Builder
- Enclosing class:
- MethodSettings
public static interface MethodSettings.LongRunningOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.DurationgetInitialPollDelay()Initial delay after which the first poll request will be made.com.google.protobuf.DurationOrBuildergetInitialPollDelayOrBuilder()Initial delay after which the first poll request will be made.com.google.protobuf.DurationgetMaxPollDelay()Maximum time between two subsequent poll requests.com.google.protobuf.DurationOrBuildergetMaxPollDelayOrBuilder()Maximum time between two subsequent poll requests.floatgetPollDelayMultiplier()Multiplier to gradually increase delay between subsequent polls until it reaches max_poll_delay.com.google.protobuf.DurationgetTotalPollTimeout()Total polling timeout.com.google.protobuf.DurationOrBuildergetTotalPollTimeoutOrBuilder()Total polling timeout.booleanhasInitialPollDelay()Initial delay after which the first poll request will be made.booleanhasMaxPollDelay()Maximum time between two subsequent poll requests.booleanhasTotalPollTimeout()Total polling timeout.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasInitialPollDelay
boolean hasInitialPollDelay()
Initial delay after which the first poll request will be made. Default value: 5 seconds.
.google.protobuf.Duration initial_poll_delay = 1;- Returns:
- Whether the initialPollDelay field is set.
-
getInitialPollDelay
com.google.protobuf.Duration getInitialPollDelay()
Initial delay after which the first poll request will be made. Default value: 5 seconds.
.google.protobuf.Duration initial_poll_delay = 1;- Returns:
- The initialPollDelay.
-
getInitialPollDelayOrBuilder
com.google.protobuf.DurationOrBuilder getInitialPollDelayOrBuilder()
Initial delay after which the first poll request will be made. Default value: 5 seconds.
.google.protobuf.Duration initial_poll_delay = 1;
-
getPollDelayMultiplier
float getPollDelayMultiplier()
Multiplier to gradually increase delay between subsequent polls until it reaches max_poll_delay. Default value: 1.5.
float poll_delay_multiplier = 2;- Returns:
- The pollDelayMultiplier.
-
hasMaxPollDelay
boolean hasMaxPollDelay()
Maximum time between two subsequent poll requests. Default value: 45 seconds.
.google.protobuf.Duration max_poll_delay = 3;- Returns:
- Whether the maxPollDelay field is set.
-
getMaxPollDelay
com.google.protobuf.Duration getMaxPollDelay()
Maximum time between two subsequent poll requests. Default value: 45 seconds.
.google.protobuf.Duration max_poll_delay = 3;- Returns:
- The maxPollDelay.
-
getMaxPollDelayOrBuilder
com.google.protobuf.DurationOrBuilder getMaxPollDelayOrBuilder()
Maximum time between two subsequent poll requests. Default value: 45 seconds.
.google.protobuf.Duration max_poll_delay = 3;
-
hasTotalPollTimeout
boolean hasTotalPollTimeout()
Total polling timeout. Default value: 5 minutes.
.google.protobuf.Duration total_poll_timeout = 4;- Returns:
- Whether the totalPollTimeout field is set.
-
getTotalPollTimeout
com.google.protobuf.Duration getTotalPollTimeout()
Total polling timeout. Default value: 5 minutes.
.google.protobuf.Duration total_poll_timeout = 4;- Returns:
- The totalPollTimeout.
-
getTotalPollTimeoutOrBuilder
com.google.protobuf.DurationOrBuilder getTotalPollTimeoutOrBuilder()
Total polling timeout. Default value: 5 minutes.
.google.protobuf.Duration total_poll_timeout = 4;
-
-