Package io.pravega.client.admin.impl
Class ReaderGroupManagerImpl.ReaderGroupStateUpdatesSerializer
- java.lang.Object
-
- io.pravega.client.admin.impl.ReaderGroupManagerImpl.ReaderGroupStateUpdatesSerializer
-
- All Implemented Interfaces:
Serializer<Update<ReaderGroupState>>
- Enclosing class:
- ReaderGroupManagerImpl
public static class ReaderGroupManagerImpl.ReaderGroupStateUpdatesSerializer extends java.lang.Object implements Serializer<Update<ReaderGroupState>>
-
-
Field Summary
-
Fields inherited from interface io.pravega.client.stream.Serializer
MAX_EVENT_SIZE
-
-
Constructor Summary
Constructors Constructor Description ReaderGroupStateUpdatesSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Update<ReaderGroupState>
deserialize(java.nio.ByteBuffer serializedValue)
Deserializes the given ByteBuffer into an event.java.nio.ByteBuffer
serialize(Update<ReaderGroupState> value)
Serializes the given event.
-
-
-
Method Detail
-
serialize
public java.nio.ByteBuffer serialize(Update<ReaderGroupState> value)
Description copied from interface:Serializer
Serializes the given event.- Specified by:
serialize
in interfaceSerializer<Update<ReaderGroupState>>
- Parameters:
value
- The event to be serialized.- Returns:
- The serialized form of the event.
NOTE: buffers returned should not exceed
Serializer.MAX_EVENT_SIZE
.
-
deserialize
public Update<ReaderGroupState> deserialize(java.nio.ByteBuffer serializedValue)
Description copied from interface:Serializer
Deserializes the given ByteBuffer into an event.- Specified by:
deserialize
in interfaceSerializer<Update<ReaderGroupState>>
- Parameters:
serializedValue
- A event that has been previously serialized.- Returns:
- The event object.
-
-