Package io.pravega.client.stream
Interface Position
-
public interface Position
A position in a stream. Used to indicate where a reader died. SeeReaderGroup.readerOffline(String, Position)
Note that this is serializable so that it can be written to an external datastore.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description io.pravega.client.stream.impl.PositionInternal
asImpl()
Used internally.static Position
fromBytes(java.nio.ByteBuffer serializedPosition)
Deserializes the position from its serialized from obtained from callingtoBytes()
.java.nio.ByteBuffer
toBytes()
Serializes the position to a compact byte array.
-