Async

final case class Async[A](encode: A => AsyncCallback[Value], decode: Value => AsyncCallback[A])
Companion:
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def webStorageKey(key: Key): Async[A]
def xmap[B](onDecode: A => B)(onEncode: B => A): Async[B]
def xmapAsync[B](onDecode: A => AsyncCallback[B])(onEncode: B => AsyncCallback[A]): Async[B]
def xmapRaw(afterEncode: (A, Value) => Value, beforeDecode: Value => Value): Async[A]

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product