Interface Datum
-
public interface DatumDatum contains methods to get the payload information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatumMetadatagetDatumMetadata()method to get the metadata information for the Datumjava.time.InstantgetEventTime()method to get the event time of the payloadbyte[]getValue()method to get the payload valuejava.time.InstantgetWatermark()method to get the watermark information
-
-
-
Method Detail
-
getValue
byte[] getValue()
method to get the payload value- Returns:
- returns the payload value in byte array
-
getEventTime
java.time.Instant getEventTime()
method to get the event time of the payload- Returns:
- returns the event time of the payload
-
getWatermark
java.time.Instant getWatermark()
method to get the watermark information- Returns:
- returns the watermark
-
getDatumMetadata
DatumMetadata getDatumMetadata()
method to get the metadata information for the Datum- Returns:
- returns the metadata
-
-