Uses of Class
io.vertx.reactivex.ext.web.Session
-
Packages that use Session Package Description io.vertx.reactivex.ext.web io.vertx.reactivex.ext.web.handler io.vertx.reactivex.ext.web.handler.sockjs io.vertx.reactivex.ext.web.sstore -
-
Uses of Session in io.vertx.reactivex.ext.web
Fields in io.vertx.reactivex.ext.web with type parameters of type Session Modifier and Type Field Description static TypeArg<Session>Session. __TYPE_ARGMethods in io.vertx.reactivex.ext.web that return Session Modifier and Type Method Description SessionSession. computeIfAbsent(String key, Function<String,Object> mappingFunction)Put some data in a session if absent.static SessionSession. newInstance(io.vertx.ext.web.Session arg)SessionSession. put(String key, Object obj)Put some data in a sessionSessionSession. putIfAbsent(String key, Object obj)Put some data in a session if absentSessionSession. regenerateId()SessionRoutingContext. session()Get the session.Methods in io.vertx.reactivex.ext.web with parameters of type Session Modifier and Type Method Description voidRoutingContext. setSession(Session session)Deprecated. -
Uses of Session in io.vertx.reactivex.ext.web.handler
Methods in io.vertx.reactivex.ext.web.handler that return Session Modifier and Type Method Description SessionSessionHandler. newSession(RoutingContext context)Create a new session -
Uses of Session in io.vertx.reactivex.ext.web.handler.sockjs
Methods in io.vertx.reactivex.ext.web.handler.sockjs that return Session Modifier and Type Method Description SessionSockJSSocket. webSession() -
Uses of Session in io.vertx.reactivex.ext.web.sstore
Methods in io.vertx.reactivex.ext.web.sstore that return Session Modifier and Type Method Description SessionSessionStore. createSession(long timeout)Create a new session using the default min length.SessionSessionStore. createSession(long timeout, int length)Create a new session.Methods in io.vertx.reactivex.ext.web.sstore that return types with arguments of type Session Modifier and Type Method Description io.reactivex.Maybe<Session>SessionStore. rxGet(String cookieValue)Get the session with the specified ID.Methods in io.vertx.reactivex.ext.web.sstore with parameters of type Session Modifier and Type Method Description SessionStoreSessionStore. put(Session session)Add a session with the specified ID.SessionStoreSessionStore. put(Session session, io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler)Add a session with the specified ID.io.reactivex.CompletableSessionStore. rxPut(Session session)Add a session with the specified ID.Method parameters in io.vertx.reactivex.ext.web.sstore with type arguments of type Session Modifier and Type Method Description SessionStoreSessionStore. get(String cookieValue, io.vertx.core.Handler<io.vertx.core.AsyncResult<Session>> resultHandler)Get the session with the specified ID.
-