RemoveSessionState delete the session state associated with a specific session ID
(sessionId string)
| 160 | |
| 161 | // RemoveSessionState delete the session state associated with a specific session ID |
| 162 | func (manager *SessionManager) RemoveSessionState(sessionId string) error { |
| 163 | return manager.store.SessionRemove(sessionId) |
| 164 | } |
| 165 | |
| 166 | // GC loop gc session data |
| 167 | func (manager *SessionManager) GC() { |
no test coverage detected