| Class | Waves::Session |
| In: |
lib/runtime/session.rb
|
| Parent: | Object |
Encapsulates the session associated with a given request. A session has an expiration and path, which must be provided in a Waves::Configuration. Sensible defaults are defined in Waves::Configurations::Default
Access a given data element of the session using the given key.
# File lib/runtime/session.rb, line 19
19: def [](key) ; @data[key] ; end