const mixin wisp::WispSessionStore

wisp::WispSessionStore

Source

Pluggable hooks for Wisp session storage.

delete

abstract Void delete(Str id)

Source

Delete any resources used by the given session id

load

abstract Str:Obj? load(Str id)

Source

Load the session map for the given id, or if it doesn't exist then create a new one.

onStart

virtual Void onStart()

Source

Callback when WispService is started

onStop

virtual Void onStop()

Source

Callback when WispService is stopped

save

abstract Void save(Str id, Str:Obj? map)

Source

Save the given session map by session id.

service

abstract WispService service()

Source

Parent web service