Uses of Class
org.apache.tinkerpop.gremlin.server.op.session.Session
-
Packages that use Session Package Description org.apache.tinkerpop.gremlin.server.handler org.apache.tinkerpop.gremlin.server.op.session -
-
Uses of Session in org.apache.tinkerpop.gremlin.server.handler
Fields in org.apache.tinkerpop.gremlin.server.handler with type parameters of type Session Modifier and Type Field Description static io.netty.util.AttributeKey<Session>
StateKey. SESSION
The key for the currentSession
object. -
Uses of Session in org.apache.tinkerpop.gremlin.server.op.session
Fields in org.apache.tinkerpop.gremlin.server.op.session with type parameters of type Session Modifier and Type Field Description protected static ConcurrentHashMap<String,Session>
SessionOpProcessor. sessions
Script engines are evaluated in a per session context where imports/scripts are isolated per session.Methods in org.apache.tinkerpop.gremlin.server.op.session that return Session Modifier and Type Method Description protected static Session
SessionOpProcessor. getSession(Context context, RequestMessage msg)
Examines theRequestMessage
and extracts the session token.Methods in org.apache.tinkerpop.gremlin.server.op.session with parameters of type Session Modifier and Type Method Description protected Function<Context,AbstractEvalOpProcessor.BindingSupplier>
SessionOpProcessor. getBindingMaker(Session session)
A useful method for those extending this class, where the means for binding construction can be supplied to this class.Constructor parameters in org.apache.tinkerpop.gremlin.server.op.session with type arguments of type Session Constructor Description Session(String session, Context context, ConcurrentHashMap<String,Session> sessions)
-