Uses of Interface
org.apache.tinkerpop.gremlin.util.MessageSerializer
-
-
Uses of MessageSerializer in org.apache.tinkerpop.gremlin.driver
Methods in org.apache.tinkerpop.gremlin.driver with parameters of type MessageSerializer Modifier and Type Method Description Cluster.Builder
Cluster.Builder. serializer(MessageSerializer<?> serializer)
Sets theMessageSerializer
to use. -
Uses of MessageSerializer in org.apache.tinkerpop.gremlin.driver.handler
Constructors in org.apache.tinkerpop.gremlin.driver.handler with parameters of type MessageSerializer Constructor Description HttpGremlinRequestEncoder(MessageSerializer<?> serializer, UnaryOperator<io.netty.handler.codec.http.FullHttpRequest> interceptor)
Deprecated.HttpGremlinRequestEncoder(MessageSerializer<?> serializer, UnaryOperator<io.netty.handler.codec.http.FullHttpRequest> interceptor, boolean userAgentEnabled)
HttpGremlinResponseDecoder(MessageSerializer<?> serializer)
WebSocketGremlinRequestEncoder(boolean binaryEncoding, MessageSerializer<?> serializer)
WebSocketGremlinResponseDecoder(MessageSerializer<?> serializer)
-
Uses of MessageSerializer in org.apache.tinkerpop.gremlin.server
Fields in org.apache.tinkerpop.gremlin.server with type parameters of type MessageSerializer Modifier and Type Field Description protected Map<String,MessageSerializer<?>>
AbstractChannelizer. serializers
-
Uses of MessageSerializer in org.apache.tinkerpop.gremlin.server.handler
Fields in org.apache.tinkerpop.gremlin.server.handler with type parameters of type MessageSerializer Modifier and Type Field Description static io.netty.util.AttributeKey<MessageSerializer<?>>
StateKey. SERIALIZER
The key for the current serializer requested by the client.Method parameters in org.apache.tinkerpop.gremlin.server.handler with type arguments of type MessageSerializer 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
.Constructor parameters in org.apache.tinkerpop.gremlin.server.handler with type arguments of type MessageSerializer Constructor Description HttpGremlinEndpointHandler(Map<String,MessageSerializer<?>> serializers, GremlinExecutor gremlinExecutor, GraphManager graphManager, Settings settings)
WsGremlinBinaryRequestDecoder(Map<String,MessageSerializer<?>> serializers)
WsGremlinCloseRequestDecoder(Map<String,MessageSerializer<?>> serializers)
WsGremlinTextRequestDecoder(Map<String,MessageSerializer<?>> serializers)
-
Uses of MessageSerializer in org.apache.tinkerpop.gremlin.server.op
Methods in org.apache.tinkerpop.gremlin.server.op with parameters of type MessageSerializer Modifier and Type Method Description protected static Frame
AbstractOpProcessor. makeFrame(Context ctx, RequestMessage msg, MessageSerializer<?> serializer, boolean useBinary, List<Object> aggregate, ResponseStatusCode code, Map<String,Object> responseMetaData, Map<String,Object> statusAttributes)
-
Uses of MessageSerializer in org.apache.tinkerpop.gremlin.server.util
Classes in org.apache.tinkerpop.gremlin.server.util that implement MessageSerializer Modifier and Type Class Description class
TextPlainMessageSerializer
A highly use-case specific serializer that only has context for HTTP where results simply need to be converted to string in a line by line fashion for text based returns. -
Uses of MessageSerializer in org.apache.tinkerpop.gremlin.util.ser
Subinterfaces of MessageSerializer in org.apache.tinkerpop.gremlin.util.ser Modifier and Type Interface Description interface
MessageTextSerializer<M>
An extension to the MessageSerializer interface that allows a format to be compatible with text-based websocket messages.Classes in org.apache.tinkerpop.gremlin.util.ser that implement MessageSerializer Modifier and Type Class Description class
AbstractGraphSONMessageSerializerV1
class
AbstractGraphSONMessageSerializerV2
class
AbstractMessageSerializer<M>
BaseMessageSerializer
that serializers can implement to get some helper methods around configuring aMapper.Builder
.class
GraphBinaryMessageSerializerV1
class
GraphSONMessageSerializerV1
Serialize results to JSON with version 1.0.x schema.class
GraphSONMessageSerializerV2
Serialize results to JSON with version 2.0.x schema and the extended module.class
GraphSONMessageSerializerV3
Serialize results to JSON with version 3.0.x schema and the extended module.class
GraphSONUntypedMessageSerializerV1
Serialize results to JSON with version 1.0.x schema and serialization which does not embed types.class
GraphSONUntypedMessageSerializerV2
Serialize results to JSON with version 2.0.x schema and the extended module without embedded types.class
GraphSONUntypedMessageSerializerV3
Serialize results to JSON with version 3.0.x schema and the extended module without embedded types.Methods in org.apache.tinkerpop.gremlin.util.ser that return MessageSerializer Modifier and Type Method Description MessageSerializer<?>
Serializers. simpleInstance()
-