definition: |
removeSessionData :: (Read a, Show a) => SessionStore a -> IO () removeSessionData sessionData = do ensureSessionDataDir sid <- getSessionId SessionData sdata <- safeReadGlobalP sessionData emptySessionData currentTime <- getClockTime writeGlobalP sessionData (SessionData (filter (\ (id, _, _) -> id /= sid) (cleanup currentTime sdata))) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Removes data related to the current user session from a session store. |
failfree: |
<FAILING> |
indeterministic: |
might be indeterministic |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> _} |
name: |
removeSessionData |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
(Prelude.Read a, Prelude.Show a) => Data.Global.GlobalP (SessionData a) -> Prelude.IO () |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |