Package | Description |
---|---|
io.vertx.rxjava.ext.web | |
io.vertx.rxjava.ext.web.handler | |
io.vertx.rxjava.ext.web.handler.sockjs | |
io.vertx.rxjava.ext.web.sstore |
Modifier and Type | Field and Description |
---|---|
static io.vertx.lang.rx.TypeArg<Session> |
Session.__TYPE_ARG |
Modifier and Type | Method and Description |
---|---|
Session |
Session.computeIfAbsent(String key,
java.util.function.Function<String,Object> mappingFunction)
Put some data in a session if absent.
|
static Session |
Session.newInstance(Session arg) |
Session |
Session.put(String key,
Object obj)
Put some data in a session
|
Session |
Session.putIfAbsent(String key,
Object obj)
Put some data in a session if absent
|
Session |
Session.regenerateId() |
Session |
RoutingContext.session()
Get the session.
|
Modifier and Type | Method and Description |
---|---|
void |
RoutingContext.setSession(Session session)
Set the session.
|
Modifier and Type | Method and Description |
---|---|
Session |
SessionHandler.newSession(RoutingContext context)
Create a new session
|
Modifier and Type | Method and Description |
---|---|
Session |
SockJSSocket.webSession() |
Modifier and Type | Method and Description |
---|---|
Session |
SessionStore.createSession(long timeout)
Create a new session using the default min length.
|
Session |
SessionStore.createSession(long timeout,
int length)
Create a new session.
|
Modifier and Type | Method and Description |
---|---|
Single<Session> |
SessionStore.rxGet(String cookieValue)
Get the session with the specified ID.
|
Modifier and Type | Method and Description |
---|---|
void |
SessionStore.put(Session session)
Add a session with the specified ID.
|
void |
SessionStore.put(Session session,
Handler<AsyncResult<Void>> resultHandler)
Add a session with the specified ID.
|
Single<Void> |
SessionStore.rxPut(Session session)
Add a session with the specified ID.
|
Modifier and Type | Method and Description |
---|---|
void |
SessionStore.get(String cookieValue,
Handler<AsyncResult<Session>> resultHandler)
Get the session with the specified ID.
|
Copyright © 2021 Eclipse. All rights reserved.