Class SubscribeToShardEvent
- All Implemented Interfaces:
Serializable,SdkPojo,SubscribeToShardEventStream,ToCopyableBuilder<SubscribeToShardEvent.Builder,SubscribeToShardEvent>
After you call SubscribeToShard, Kinesis Data Streams sends events of this type over an HTTP/2 connection to your consumer.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceprotected static classNested classes/interfaces inherited from interface software.amazon.awssdk.services.kinesis.model.SubscribeToShardEventStream
SubscribeToShardEventStream.EventType -
Field Summary
Fields inherited from interface software.amazon.awssdk.services.kinesis.model.SubscribeToShardEventStream
UNKNOWN -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected -
Method Summary
Modifier and TypeMethodDescriptionvoidCalls the appropriate visit method depending on the subtype ofSubscribeToShardEvent.builder()final List<ChildShard>The list of the child shards of the current shard, returned only at the end of the current shard.final StringUse this asSequenceNumberin the next call to SubscribeToShard, withStartingPositionset toAT_SEQUENCE_NUMBERorAFTER_SEQUENCE_NUMBER.final SubscribeToShardEventcopy(Consumer<? super SubscribeToShardEvent.Builder> modifier) final booleanfinal booleanequalsBySdkFields(Object obj) final <T> Optional<T>getValueForField(String fieldName, Class<T> clazz) final booleanFor responses, this returns true if the service returned a value for the ChildShards property.final inthashCode()final booleanFor responses, this returns true if the service returned a value for the Records property.final LongThe number of milliseconds the read records are from the tip of the stream, indicating how far behind current time the consumer is.records()The type of this event.static Class<? extends SubscribeToShardEvent.Builder>final StringtoString()Returns a string representation of this object.
-
Constructor Details
-
SubscribeToShardEvent
-
-
Method Details
-
hasRecords
public final boolean hasRecords()For responses, this returns true if the service returned a value for the Records property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified. -
records
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasRecords()method.- Returns:
-
continuationSequenceNumber
Use this as
SequenceNumberin the next call to SubscribeToShard, withStartingPositionset toAT_SEQUENCE_NUMBERorAFTER_SEQUENCE_NUMBER. UseContinuationSequenceNumberfor checkpointing because it captures your shard progress even when no data is written to the shard.- Returns:
- Use this as
SequenceNumberin the next call to SubscribeToShard, withStartingPositionset toAT_SEQUENCE_NUMBERorAFTER_SEQUENCE_NUMBER. UseContinuationSequenceNumberfor checkpointing because it captures your shard progress even when no data is written to the shard.
-
millisBehindLatest
The number of milliseconds the read records are from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates that record processing is caught up, and there are no new records to process at this moment.
- Returns:
- The number of milliseconds the read records are from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates that record processing is caught up, and there are no new records to process at this moment.
-
hasChildShards
public final boolean hasChildShards()For responses, this returns true if the service returned a value for the ChildShards property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified. -
childShards
The list of the child shards of the current shard, returned only at the end of the current shard.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasChildShards()method.- Returns:
- The list of the child shards of the current shard, returned only at the end of the current shard.
-
toBuilder
- Specified by:
toBuilderin interfaceToCopyableBuilder<SubscribeToShardEvent.Builder,SubscribeToShardEvent>
-
builder
-
serializableBuilderClass
-
hashCode
public final int hashCode() -
equals
-
equalsBySdkFields
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value. -
getValueForField
-
copy
- Specified by:
copyin interfaceToCopyableBuilder<SubscribeToShardEvent.Builder,SubscribeToShardEvent>
-
sdkFields
-
sdkFieldNameToField
- Specified by:
sdkFieldNameToFieldin interfaceSdkPojo
-
sdkEventType
Description copied from interface:SubscribeToShardEventStreamThe type of this event. Corresponds to the:event-typeheader on the Message.- Specified by:
sdkEventTypein interfaceSubscribeToShardEventStream
-
accept
Calls the appropriate visit method depending on the subtype ofSubscribeToShardEvent.- Specified by:
acceptin interfaceSubscribeToShardEventStream- Parameters:
visitor- Visitor to invoke.
-