Interface JwksAsyncFetchOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
JwksAsyncFetch,JwksAsyncFetch.Builder
public interface JwksAsyncFetchOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.DurationgetFailedRefetchDuration()The duration to refetch after a failed fetch.com.google.protobuf.DurationOrBuildergetFailedRefetchDurationOrBuilder()The duration to refetch after a failed fetch.booleangetFastListener()If false, the listener is activated after the initial fetch is completed.booleanhasFailedRefetchDuration()The duration to refetch after a failed fetch.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFastListener
boolean getFastListener()
If false, the listener is activated after the initial fetch is completed. The initial fetch result can be either successful or failed. If true, it is activated without waiting for the initial fetch to complete. Default is false.
bool fast_listener = 1;- Returns:
- The fastListener.
-
hasFailedRefetchDuration
boolean hasFailedRefetchDuration()
The duration to refetch after a failed fetch. If not specified, default is 1 second.
.google.protobuf.Duration failed_refetch_duration = 2;- Returns:
- Whether the failedRefetchDuration field is set.
-
getFailedRefetchDuration
com.google.protobuf.Duration getFailedRefetchDuration()
The duration to refetch after a failed fetch. If not specified, default is 1 second.
.google.protobuf.Duration failed_refetch_duration = 2;- Returns:
- The failedRefetchDuration.
-
getFailedRefetchDurationOrBuilder
com.google.protobuf.DurationOrBuilder getFailedRefetchDurationOrBuilder()
The duration to refetch after a failed fetch. If not specified, default is 1 second.
.google.protobuf.Duration failed_refetch_duration = 2;
-
-