const mixin wisp::WispSessionStore
wisp::WispSessionStore
Pluggable hooks for Wisp session storage.
- delete
-
Delete any resources used by the given session id
- load
-
abstract Map<Str,Obj?> load(Str id)
Load the session map for the given id, or if it doesn't exist then create a new one.
- onStart
-
virtual Void onStart()
Callback when WispService is started
- onStop
-
virtual Void onStop()
Callback when WispService is stopped
- save
-
abstract Void save(Str id, Map<Str,Obj?> map)
Save the given session map by session id.
- service
-
abstract WispService service()
Parent web service