Uses of Class
org.apache.tinkerpop.gremlin.driver.ser.SerializationException
-
-
Uses of SerializationException in org.apache.tinkerpop.gremlin.driver
Methods in org.apache.tinkerpop.gremlin.driver that throw SerializationException Modifier and Type Method Description RequestMessage
MessageSerializer. deserializeRequest(io.netty.buffer.ByteBuf msg)
Deserialize a NettyByteBuf
into aRequestMessage
.ResponseMessage
MessageSerializer. deserializeResponse(io.netty.buffer.ByteBuf msg)
Deserialize a NettyByteBuf
into aResponseMessage
.io.netty.buffer.ByteBuf
MessageSerializer. serializeRequestAsBinary(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
Serialize aResponseMessage
to a NettyByteBuf
.io.netty.buffer.ByteBuf
MessageSerializer. serializeResponseAsBinary(ResponseMessage responseMessage, io.netty.buffer.ByteBufAllocator allocator)
Serialize aResponseMessage
to a NettyByteBuf
. -
Uses of SerializationException in org.apache.tinkerpop.gremlin.driver.ser
Methods in org.apache.tinkerpop.gremlin.driver.ser that throw SerializationException Modifier and Type Method Description RequestMessage
AbstractGraphSONMessageSerializerV1d0. deserializeRequest(io.netty.buffer.ByteBuf msg)
RequestMessage
AbstractGraphSONMessageSerializerV2d0. deserializeRequest(io.netty.buffer.ByteBuf msg)
RequestMessage
GraphBinaryMessageSerializerV1. deserializeRequest(io.netty.buffer.ByteBuf msg)
RequestMessage
GraphBinaryMessageSerializerV1. deserializeRequest(String msg)
RequestMessage
GraphSONMessageSerializerV1d0. deserializeRequest(String msg)
Deprecated.RequestMessage
GraphSONMessageSerializerV2d0. deserializeRequest(String msg)
RequestMessage
GraphSONMessageSerializerV3d0. deserializeRequest(String msg)
RequestMessage
GraphSONUntypedMessageSerializerV1d0. deserializeRequest(String msg)
RequestMessage
GraphSONUntypedMessageSerializerV2d0. deserializeRequest(String msg)
RequestMessage
MessageTextSerializer. deserializeRequest(String msg)
ResponseMessage
AbstractGraphSONMessageSerializerV1d0. deserializeResponse(io.netty.buffer.ByteBuf msg)
ResponseMessage
AbstractGraphSONMessageSerializerV2d0. deserializeResponse(io.netty.buffer.ByteBuf msg)
ResponseMessage
GraphBinaryMessageSerializerV1. deserializeResponse(io.netty.buffer.ByteBuf msg)
ResponseMessage
GraphBinaryMessageSerializerV1. deserializeResponse(String msg)
ResponseMessage
GraphSONMessageSerializerV1d0. deserializeResponse(String msg)
Deprecated.ResponseMessage
GraphSONMessageSerializerV2d0. deserializeResponse(String msg)
ResponseMessage
GraphSONMessageSerializerV3d0. deserializeResponse(String msg)
ResponseMessage
GraphSONUntypedMessageSerializerV1d0. deserializeResponse(String msg)
ResponseMessage
GraphSONUntypedMessageSerializerV2d0. deserializeResponse(String msg)
ResponseMessage
MessageTextSerializer. deserializeResponse(String msg)
io.netty.buffer.ByteBuf
AbstractGraphSONMessageSerializerV1d0. serializeRequestAsBinary(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
io.netty.buffer.ByteBuf
AbstractGraphSONMessageSerializerV2d0. serializeRequestAsBinary(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
io.netty.buffer.ByteBuf
GraphBinaryMessageSerializerV1. serializeRequestAsBinary(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
String
GraphBinaryMessageSerializerV1. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
String
GraphSONMessageSerializerV1d0. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
Deprecated.String
GraphSONMessageSerializerV2d0. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
String
GraphSONMessageSerializerV3d0. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
String
GraphSONUntypedMessageSerializerV1d0. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
String
GraphSONUntypedMessageSerializerV2d0. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
String
MessageTextSerializer. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
io.netty.buffer.ByteBuf
AbstractGraphSONMessageSerializerV1d0. serializeResponseAsBinary(ResponseMessage responseMessage, io.netty.buffer.ByteBufAllocator allocator)
io.netty.buffer.ByteBuf
AbstractGraphSONMessageSerializerV2d0. serializeResponseAsBinary(ResponseMessage responseMessage, io.netty.buffer.ByteBufAllocator allocator)
io.netty.buffer.ByteBuf
GraphBinaryMessageSerializerV1. serializeResponseAsBinary(ResponseMessage responseMessage, io.netty.buffer.ByteBufAllocator allocator)
String
GraphBinaryMessageSerializerV1. serializeResponseAsString(ResponseMessage responseMessage, io.netty.buffer.ByteBufAllocator allocator)
String
GraphSONMessageSerializerV1d0. serializeResponseAsString(ResponseMessage responseMessage, io.netty.buffer.ByteBufAllocator allocator)
Deprecated.String
GraphSONMessageSerializerV2d0. serializeResponseAsString(ResponseMessage responseMessage, io.netty.buffer.ByteBufAllocator allocator)
String
GraphSONMessageSerializerV3d0. serializeResponseAsString(ResponseMessage responseMessage, io.netty.buffer.ByteBufAllocator allocator)
String
GraphSONUntypedMessageSerializerV1d0. serializeResponseAsString(ResponseMessage responseMessage, io.netty.buffer.ByteBufAllocator allocator)
String
GraphSONUntypedMessageSerializerV2d0. serializeResponseAsString(ResponseMessage responseMessage, io.netty.buffer.ByteBufAllocator allocator)
String
MessageTextSerializer. serializeResponseAsString(ResponseMessage responseMessage, io.netty.buffer.ByteBufAllocator allocator)
-
Uses of SerializationException in org.apache.tinkerpop.gremlin.driver.ser.binary
Methods in org.apache.tinkerpop.gremlin.driver.ser.binary that throw SerializationException Modifier and Type Method Description RequestMessage
RequestMessageSerializer. readValue(io.netty.buffer.ByteBuf byteBuf, GraphBinaryReader context)
ResponseMessage
ResponseMessageSerializer. readValue(io.netty.buffer.ByteBuf byteBuf, GraphBinaryReader context)
void
RequestMessageSerializer. writeValue(RequestMessage value, io.netty.buffer.ByteBuf byteBuf, GraphBinaryWriter context)
void
ResponseMessageSerializer. writeValue(ResponseMessage value, io.netty.buffer.ByteBuf byteBuf, GraphBinaryWriter context)
-
Uses of SerializationException in org.apache.tinkerpop.gremlin.server.handler
Methods in org.apache.tinkerpop.gremlin.server.handler that throw SerializationException Modifier and Type Method Description static RequestMessage
HttpHandlerUtil. getRequestMessageFromHttpRequest(io.netty.handler.codec.http.FullHttpRequest request, Map<String,MessageSerializer<?>> serializers)
Convert a http request into aRequestMessage
. -
Uses of SerializationException in org.apache.tinkerpop.gremlin.server.util
Methods in org.apache.tinkerpop.gremlin.server.util that throw SerializationException Modifier and Type Method Description RequestMessage
TextPlainMessageSerializer. deserializeRequest(io.netty.buffer.ByteBuf msg)
RequestMessage
TextPlainMessageSerializer. deserializeRequest(String msg)
ResponseMessage
TextPlainMessageSerializer. deserializeResponse(io.netty.buffer.ByteBuf msg)
ResponseMessage
TextPlainMessageSerializer. deserializeResponse(String msg)
io.netty.buffer.ByteBuf
TextPlainMessageSerializer. serializeRequestAsBinary(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
String
TextPlainMessageSerializer. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
io.netty.buffer.ByteBuf
TextPlainMessageSerializer. serializeResponseAsBinary(ResponseMessage responseMessage, io.netty.buffer.ByteBufAllocator allocator)
String
TextPlainMessageSerializer. serializeResponseAsString(ResponseMessage responseMessage, io.netty.buffer.ByteBufAllocator allocator)
-