Package io.undertow.servlet.api
Interface SessionPersistenceManager
-
- All Known Implementing Classes:
InMemorySessionPersistence
public interface SessionPersistenceManagerInterface 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 Modifier and Type Interface Description static classSessionPersistenceManager.PersistentSession
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclear(String deploymentName)Map<String,SessionPersistenceManager.PersistentSession>loadSessionAttributes(String deploymentName, ClassLoader classLoader)voidpersistSessions(String deploymentName, Map<String,SessionPersistenceManager.PersistentSession> sessionData)
-
-
-
Method Detail
-
persistSessions
void persistSessions(String deploymentName, Map<String,SessionPersistenceManager.PersistentSession> sessionData)
-
loadSessionAttributes
Map<String,SessionPersistenceManager.PersistentSession> loadSessionAttributes(String deploymentName, ClassLoader classLoader)
-
clear
void clear(String deploymentName)
-
-