Package io.undertow.servlet.api
Interface SessionPersistenceManager
- All Known Implementing Classes:
InMemorySessionPersistence
public interface SessionPersistenceManager
Interface that is used in development mode to support session persistence across redeploys.
This is not intended for production use. Serialization is performed on a best effort basis and errors will be ignored.
- Author:
- Stuart Douglas
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionvoid
loadSessionAttributes
(String deploymentName, ClassLoader classLoader) void
persistSessions
(String deploymentName, Map<String, SessionPersistenceManager.PersistentSession> sessionData)
-
Method Details
-
persistSessions
void persistSessions(String deploymentName, Map<String, SessionPersistenceManager.PersistentSession> sessionData) -
loadSessionAttributes
Map<String,SessionPersistenceManager.PersistentSession> loadSessionAttributes(String deploymentName, ClassLoader classLoader) -
clear
-