Package s2.v1alpha
Interface StreamConfig.TimestampingOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StreamConfig.Timestamping
,StreamConfig.Timestamping.Builder
- Enclosing class:
- StreamConfig
public static interface StreamConfig.TimestampingOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimestampingMode
getMode()
Timestamping mode for appends that influences how timestamps are handled.int
getModeValue()
Timestamping mode for appends that influences how timestamps are handled.boolean
getUncapped()
Allow client-specified timestamps to exceed the arrival time.boolean
hasUncapped()
Allow client-specified timestamps to exceed the arrival time.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getModeValue
int getModeValue()
Timestamping mode for appends that influences how timestamps are handled.
.s2.v1alpha.TimestampingMode mode = 1;
- Returns:
- The enum numeric value on the wire for mode.
-
getMode
TimestampingMode getMode()
Timestamping mode for appends that influences how timestamps are handled.
.s2.v1alpha.TimestampingMode mode = 1;
- Returns:
- The mode.
-
hasUncapped
boolean hasUncapped()
Allow client-specified timestamps to exceed the arrival time. If this is false or not set, client timestamps will be capped at the arrival time.
optional bool uncapped = 2;
- Returns:
- Whether the uncapped field is set.
-
getUncapped
boolean getUncapped()
Allow client-specified timestamps to exceed the arrival time. If this is false or not set, client timestamps will be capped at the arrival time.
optional bool uncapped = 2;
- Returns:
- The uncapped.
-
-