Interface HttpSessionStore
-
- All Known Implementing Classes:
DefaultHttpSessionStore
public interface HttpSessionStore
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NettyHttpSessioncreateSession()voiddestroyInactiveSessions()voiddestroySession(String sessionId)NettyHttpSessionfindSession(String sessionId)
-
-
-
Method Detail
-
findSession
NettyHttpSession findSession(String sessionId)
-
createSession
NettyHttpSession createSession()
-
destroySession
void destroySession(String sessionId)
-
destroyInactiveSessions
void destroyInactiveSessions()
-
-