Class KvStateInternalRequest
- java.lang.Object
-
- org.apache.flink.queryablestate.network.messages.MessageBody
-
- org.apache.flink.queryablestate.messages.KvStateInternalRequest
-
@Internal public class KvStateInternalRequest extends MessageBody
The request to be forwarded by theQueryable State Client Proxy
to theState Server
of the Task Manager responsible for the requested state.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
KvStateInternalRequest.KvStateInternalRequestDeserializer
-
Constructor Summary
Constructors Constructor Description KvStateInternalRequest(KvStateID stateId, byte[] serializedKeyAndNamespace)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KvStateID
getKvStateId()
byte[]
getSerializedKeyAndNamespace()
byte[]
serialize()
Serializes the message into a byte array.
-
-
-
Constructor Detail
-
KvStateInternalRequest
public KvStateInternalRequest(KvStateID stateId, byte[] serializedKeyAndNamespace)
-
-
Method Detail
-
getKvStateId
public KvStateID getKvStateId()
-
getSerializedKeyAndNamespace
public byte[] getSerializedKeyAndNamespace()
-
serialize
public byte[] serialize()
Description copied from class:MessageBody
Serializes the message into a byte array.- Specified by:
serialize
in classMessageBody
- Returns:
- A byte array with the serialized content of the message.
-
-