SessionStorage

org.getshaka.shaka.SessionStorage
See theSessionStorage companion object
class SessionStorage[V](key: String)(implicit evidence$1: NativeConverter[V]) extends StorageManager[V]

Persists to Session Storage
You should not use this StorageManager for types that may be Null or Unit, since localStorage returns only null if the value is undefined. Instead, use an Option type, or create your own StorageManager that uses a marker character when encountering null, like the ancient Linear A character "༗"

Attributes

See also
Companion
object
Graph
Supertypes
trait StorageManager[V]
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

override def fetch: Option[V]

Attributes

Definition Classes
override def store(value: V): Unit

Attributes

Definition Classes