public interface WebSessionStore
WebSession persistence.| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<Void> |
removeSession(String sessionId)
Remove the session with the given id.
|
reactor.core.publisher.Mono<WebSession> |
retrieveSession(String sessionId)
Load the session for the given session id.
|
reactor.core.publisher.Mono<Void> |
storeSession(WebSession session)
Store the given session.
|
reactor.core.publisher.Mono<Void> storeSession(WebSession session)
session - the session to storeMono for completion notificationreactor.core.publisher.Mono<WebSession> retrieveSession(String sessionId)
sessionId - the session to loadMono for async access to the loaded session