Uses of Class
org.apache.tinkerpop.gremlin.util.message.RequestMessage
-
-
Uses of RequestMessage in org.apache.tinkerpop.gremlin.driver
Methods in org.apache.tinkerpop.gremlin.driver that return RequestMessage Modifier and Type Method Description RequestMessage
ResultSet. getOriginalRequestMessage()
Methods in org.apache.tinkerpop.gremlin.driver with parameters of type RequestMessage Modifier and Type Method Description protected org.apache.tinkerpop.gremlin.driver.Connection
Client.AliasClusteredClient. chooseConnection(RequestMessage msg)
Delegates to the underlyingClient.ClusteredClient
.protected abstract org.apache.tinkerpop.gremlin.driver.Connection
Client. chooseConnection(RequestMessage msg)
Chooses aConnection
to write the message to.protected org.apache.tinkerpop.gremlin.driver.Connection
Client.ClusteredClient. chooseConnection(RequestMessage msg)
Uses aLoadBalancingStrategy
to choose the bestHost
and then selects the best connection from that host's connection pool.protected org.apache.tinkerpop.gremlin.driver.Connection
Client.SessionedClient. chooseConnection(RequestMessage msg)
Since the session is bound to a single host, simply borrow a connection from that pool.Iterator<Host>
LoadBalancingStrategy.RoundRobin. select(RequestMessage msg)
Iterator<Host>
LoadBalancingStrategy. select(RequestMessage msg)
Provide an ordered list of hosts to send the givenRequestMessage
to.CompletableFuture<ResultSet>
Client.AliasClusteredClient. submitAsync(RequestMessage msg)
CompletableFuture<ResultSet>
Client. submitAsync(RequestMessage msg)
A low-level method that allows the submission of a manually constructedRequestMessage
.Constructors in org.apache.tinkerpop.gremlin.driver with parameters of type RequestMessage Constructor Description ResultSet(org.apache.tinkerpop.gremlin.driver.ResultQueue resultQueue, ExecutorService executor, CompletableFuture<Void> readCompleted, RequestMessage originalRequestMessage, Host host)
-
Uses of RequestMessage in org.apache.tinkerpop.gremlin.driver.handler
Methods in org.apache.tinkerpop.gremlin.driver.handler with parameters of type RequestMessage Modifier and Type Method Description protected void
HttpGremlinRequestEncoder. encode(io.netty.channel.ChannelHandlerContext channelHandlerContext, RequestMessage requestMessage, List<Object> objects)
protected void
WebSocketGremlinRequestEncoder. encode(io.netty.channel.ChannelHandlerContext channelHandlerContext, RequestMessage requestMessage, List<Object> objects)
-
Uses of RequestMessage in org.apache.tinkerpop.gremlin.driver.simple
Methods in org.apache.tinkerpop.gremlin.driver.simple with parameters of type RequestMessage Modifier and Type Method Description List<ResponseMessage>
AbstractClient. submit(RequestMessage requestMessage)
void
AbstractClient. submit(RequestMessage requestMessage, Consumer<ResponseMessage> callback)
List<ResponseMessage>
SimpleClient. submit(RequestMessage requestMessage)
void
SimpleClient. submit(RequestMessage requestMessage, Consumer<ResponseMessage> callback)
CompletableFuture<List<ResponseMessage>>
AbstractClient. submitAsync(RequestMessage requestMessage)
CompletableFuture<List<ResponseMessage>>
SimpleClient. submitAsync(RequestMessage requestMessage)
abstract void
AbstractClient. writeAndFlush(RequestMessage requestMessage)
void
WebSocketClient. writeAndFlush(RequestMessage requestMessage)
-
Uses of RequestMessage in org.apache.tinkerpop.gremlin.server
Methods in org.apache.tinkerpop.gremlin.server that return RequestMessage Modifier and Type Method Description RequestMessage
Context. getRequestMessage()
Gets the current request to Gremlin Server.Methods in org.apache.tinkerpop.gremlin.server with parameters of type RequestMessage Modifier and Type Method Description default void
GraphManager. beforeQueryStart(RequestMessage msg)
This method will be called before a script or query is processed by the gremlin-server.default void
GraphManager. onQueryError(RequestMessage msg, Throwable error)
This method will be called before a script or query is processed by the gremlin-server.default void
GraphManager. onQuerySuccess(RequestMessage msg)
When a script or query successfully completes this method will be called.Constructors in org.apache.tinkerpop.gremlin.server with parameters of type RequestMessage Constructor Description Context(RequestMessage requestMessage, io.netty.channel.ChannelHandlerContext ctx, Settings settings, GraphManager graphManager, GremlinExecutor gremlinExecutor, ScheduledExecutorService scheduledExecutorService)
-
Uses of RequestMessage in org.apache.tinkerpop.gremlin.server.authz
Methods in org.apache.tinkerpop.gremlin.server.authz with parameters of type RequestMessage Modifier and Type Method Description void
Authorizer. authorize(AuthenticatedUser user, RequestMessage msg)
Checks whether a user is authorized to have a script request from a gremlin client answered and raises anAuthorizationException
if this is not the case. -
Uses of RequestMessage in org.apache.tinkerpop.gremlin.server.handler
Fields in org.apache.tinkerpop.gremlin.server.handler with type parameters of type RequestMessage Modifier and Type Field Description static io.netty.util.AttributeKey<RequestMessage>
StateKey. REQUEST_MESSAGE
The key for the current request.Methods in org.apache.tinkerpop.gremlin.server.handler that return RequestMessage Modifier and Type Method Description static RequestMessage
HttpHandlerUtil. getRequestMessageFromHttpRequest(io.netty.handler.codec.http.FullHttpRequest request)
Convert a http request into aRequestMessage
.static RequestMessage
HttpHandlerUtil. getRequestMessageFromHttpRequest(io.netty.handler.codec.http.FullHttpRequest request, Map<String,MessageSerializer<?>> serializers)
Convert a http request into aRequestMessage
.Methods in org.apache.tinkerpop.gremlin.server.handler with parameters of type RequestMessage Modifier and Type Method Description protected void
UnifiedHandler. channelRead0(io.netty.channel.ChannelHandlerContext ctx, RequestMessage msg)
protected void
OpSelectorHandler. decode(io.netty.channel.ChannelHandlerContext ctx, RequestMessage msg, List<Object> objects)
protected void
UnifiedHandler. validateRequest(RequestMessage message, GraphManager graphManager)
Method parameters in org.apache.tinkerpop.gremlin.server.handler with type arguments of type RequestMessage Modifier and Type Method Description protected void
OpExecutorHandler. channelRead0(io.netty.channel.ChannelHandlerContext ctx, org.javatuples.Pair<RequestMessage,ThrowingConsumer<Context>> objects)
Constructors in org.apache.tinkerpop.gremlin.server.handler with parameters of type RequestMessage Constructor Description SessionTask(RequestMessage requestMessage, io.netty.channel.ChannelHandlerContext ctx, Settings settings, GraphManager graphManager, GremlinExecutor gremlinExecutor, ScheduledExecutorService scheduledExecutorService)
-
Uses of RequestMessage in org.apache.tinkerpop.gremlin.server.op
Methods in org.apache.tinkerpop.gremlin.server.op with parameters of type RequestMessage Modifier and Type Method Description protected static void
AbstractOpProcessor. attemptCommit(RequestMessage msg, GraphManager graphManager, boolean strict)
protected static void
AbstractOpProcessor. attemptRollback(RequestMessage msg, GraphManager graphManager, boolean strict)
protected Map<String,Object>
AbstractOpProcessor. generateResultMetaData(io.netty.channel.ChannelHandlerContext ctx, RequestMessage msg, ResponseStatusCode code, Iterator itty, Settings settings)
Generates response result meta-data to put on aResponseMessage
.protected Map<String,Object>
AbstractOpProcessor. generateStatusAttributes(io.netty.channel.ChannelHandlerContext ctx, RequestMessage msg, ResponseStatusCode code, Iterator itty, Settings settings)
Generates response status meta-data to put on aResponseMessage
.protected boolean
AbstractOpProcessor. isForceFlushed(io.netty.channel.ChannelHandlerContext ctx, RequestMessage msg, Iterator itty)
Determines if aFrame
should be force flushed outside of theresultIterationBatchSize
and the termination of the iterator.protected void
AbstractOpProcessor. iterateComplete(io.netty.channel.ChannelHandlerContext ctx, RequestMessage msg, Iterator itty)
Called when iteration withinAbstractOpProcessor.handleIterator(Context, Iterator)
is on its final pass and the final frame is about to be sent back to the client.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)
protected Optional<ThrowingConsumer<Context>>
AbstractEvalOpProcessor. validateEvalMessage(RequestMessage message)
-
Uses of RequestMessage in org.apache.tinkerpop.gremlin.server.op.session
Methods in org.apache.tinkerpop.gremlin.server.op.session with parameters of type RequestMessage Modifier and Type Method Description protected static Session
SessionOpProcessor. getSession(Context context, RequestMessage msg)
Examines theRequestMessage
and extracts the session token.protected Optional<ThrowingConsumer<Context>>
SessionOpProcessor. validateEvalMessage(RequestMessage message)
-
Uses of RequestMessage in org.apache.tinkerpop.gremlin.server.util
Methods in org.apache.tinkerpop.gremlin.server.util that return RequestMessage Modifier and Type Method Description RequestMessage
TextPlainMessageSerializer. deserializeRequest(io.netty.buffer.ByteBuf msg)
RequestMessage
TextPlainMessageSerializer. deserializeRequest(String msg)
Methods in org.apache.tinkerpop.gremlin.server.util with parameters of type RequestMessage Modifier and Type Method Description io.netty.buffer.ByteBuf
TextPlainMessageSerializer. serializeRequestAsBinary(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
String
TextPlainMessageSerializer. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
-
Uses of RequestMessage in org.apache.tinkerpop.gremlin.util
Methods in org.apache.tinkerpop.gremlin.util that return RequestMessage Modifier and Type Method Description RequestMessage
MessageSerializer. deserializeRequest(io.netty.buffer.ByteBuf msg)
Deserialize a NettyByteBuf
into aRequestMessage
.Methods in org.apache.tinkerpop.gremlin.util with parameters of type RequestMessage Modifier and Type Method Description io.netty.buffer.ByteBuf
MessageSerializer. serializeRequestAsBinary(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
Serialize aResponseMessage
to a NettyByteBuf
. -
Uses of RequestMessage in org.apache.tinkerpop.gremlin.util.message
Fields in org.apache.tinkerpop.gremlin.util.message declared as RequestMessage Modifier and Type Field Description static RequestMessage
RequestMessage. INVALID
An "invalid" message.Methods in org.apache.tinkerpop.gremlin.util.message that return RequestMessage Modifier and Type Method Description RequestMessage
RequestMessage.Builder. create()
Create the request message given the settings provided to theRequestMessage.Builder
.Methods in org.apache.tinkerpop.gremlin.util.message with parameters of type RequestMessage Modifier and Type Method Description static ResponseMessage.Builder
ResponseMessage. build(RequestMessage requestMessage)
static RequestMessage.Builder
RequestMessage. from(RequestMessage msg)
-
Uses of RequestMessage in org.apache.tinkerpop.gremlin.util.ser
Methods in org.apache.tinkerpop.gremlin.util.ser that return RequestMessage Modifier and Type Method Description RequestMessage
AbstractGraphSONMessageSerializerV2.RequestMessageDeserializer. createObject(Map<String,Object> data)
RequestMessage
AbstractGraphSONMessageSerializerV1. deserializeRequest(io.netty.buffer.ByteBuf msg)
RequestMessage
AbstractGraphSONMessageSerializerV2. deserializeRequest(io.netty.buffer.ByteBuf msg)
RequestMessage
GraphBinaryMessageSerializerV1. deserializeRequest(io.netty.buffer.ByteBuf msg)
RequestMessage
GraphBinaryMessageSerializerV1. deserializeRequest(String msg)
RequestMessage
GraphSONMessageSerializerV1. deserializeRequest(String msg)
RequestMessage
GraphSONMessageSerializerV2. deserializeRequest(String msg)
RequestMessage
GraphSONMessageSerializerV3. deserializeRequest(String msg)
RequestMessage
GraphSONUntypedMessageSerializerV1. deserializeRequest(String msg)
RequestMessage
GraphSONUntypedMessageSerializerV2. deserializeRequest(String msg)
RequestMessage
GraphSONUntypedMessageSerializerV3. deserializeRequest(String msg)
RequestMessage
MessageTextSerializer. deserializeRequest(String msg)
<I extends InputShim>
RequestMessageRequestMessageGryoSerializer. read(KryoShim<I,?> kryo, I input, Class<RequestMessage> aClass)
Methods in org.apache.tinkerpop.gremlin.util.ser with parameters of type RequestMessage Modifier and Type Method Description void
AbstractGraphSONMessageSerializerV2.RequestMessageSerializer. ser(RequestMessage requestMessage, org.apache.tinkerpop.shaded.jackson.core.JsonGenerator jsonGenerator, org.apache.tinkerpop.shaded.jackson.databind.SerializerProvider serializerProvider, org.apache.tinkerpop.shaded.jackson.databind.jsontype.TypeSerializer typeSerializer)
void
AbstractGraphSONMessageSerializerV2.RequestMessageSerializer. serialize(RequestMessage requestMessage, org.apache.tinkerpop.shaded.jackson.core.JsonGenerator jsonGenerator, org.apache.tinkerpop.shaded.jackson.databind.SerializerProvider serializerProvider)
io.netty.buffer.ByteBuf
AbstractGraphSONMessageSerializerV1. serializeRequestAsBinary(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
io.netty.buffer.ByteBuf
AbstractGraphSONMessageSerializerV2. 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
GraphSONMessageSerializerV1. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
String
GraphSONMessageSerializerV2. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
String
GraphSONMessageSerializerV3. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
String
GraphSONUntypedMessageSerializerV1. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
String
GraphSONUntypedMessageSerializerV2. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
String
GraphSONUntypedMessageSerializerV3. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
String
MessageTextSerializer. serializeRequestAsString(RequestMessage requestMessage, io.netty.buffer.ByteBufAllocator allocator)
void
AbstractGraphSONMessageSerializerV2.RequestMessageSerializer. serializeWithType(RequestMessage requestMessage, org.apache.tinkerpop.shaded.jackson.core.JsonGenerator jsonGenerator, org.apache.tinkerpop.shaded.jackson.databind.SerializerProvider serializerProvider, org.apache.tinkerpop.shaded.jackson.databind.jsontype.TypeSerializer typeSerializer)
<O extends OutputShim>
voidRequestMessageGryoSerializer. write(KryoShim<?,O> kryo, O output, RequestMessage requestMessage)
Method parameters in org.apache.tinkerpop.gremlin.util.ser with type arguments of type RequestMessage Modifier and Type Method Description <I extends InputShim>
RequestMessageRequestMessageGryoSerializer. read(KryoShim<I,?> kryo, I input, Class<RequestMessage> aClass)
-
Uses of RequestMessage in org.apache.tinkerpop.gremlin.util.ser.binary
Methods in org.apache.tinkerpop.gremlin.util.ser.binary that return RequestMessage Modifier and Type Method Description RequestMessage
RequestMessageSerializer. readValue(io.netty.buffer.ByteBuf byteBuf, GraphBinaryReader context)
Methods in org.apache.tinkerpop.gremlin.util.ser.binary with parameters of type RequestMessage Modifier and Type Method Description void
RequestMessageSerializer. writeValue(RequestMessage value, io.netty.buffer.ByteBuf byteBuf, GraphBinaryWriter context)
-