Trait/Object

de.sciss.synth.proc.impl

KeyMapImpl

Related Docs: object KeyMapImpl | package impl

Permalink

trait KeyMapImpl[S <: Sys[S], Key, Value] extends AnyRef

 Common building block for implementing reactive maps where the key is a constant element (that is, it does not require updating such as an S#Id).

S

the system used

Key

the type of key, such as String

Value

the value type, which has an event attached to it (found via valueInfo)

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. KeyMapImpl
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Entry = KeyMapImpl.Entry[S, Key, Value]

    Permalink
    Attributes
    protected
  2. type Info = ValueInfo[S, Key, Value]

    Permalink
    Attributes
    protected

Abstract Value Members

  1. abstract def fire(added: Option[(Key, Value)], removed: Option[(Key, Value)])(implicit tx: S.Tx): Unit

    Permalink

    Wrap the given set of added and removed keys in an appropriate update message and dispatch it.

    Wrap the given set of added and removed keys in an appropriate update message and dispatch it.

    Attributes
    protected
  2. abstract def map: Map[S, Key, Entry]

    Permalink

    The underlying non-reactive map

    The underlying non-reactive map

    Attributes
    protected
  3. implicit abstract def valueInfo: Info

    Permalink

    A helper object providing key and value serialization and an event view of the value.

    A helper object providing key and value serialization and an event view of the value.

    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def add(key: Key, value: Value)(implicit tx: S.Tx): Unit

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def get(key: Key)(implicit tx: S.Tx): Option[Value]

    Permalink
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def iterator(implicit tx: S.Tx): Iterator[(Key, Value)]

    Permalink
  15. final def keys(implicit tx: S.Tx): Set[Key]

    Permalink
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def remove(key: Key)(implicit tx: S.Tx): Boolean

    Permalink
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped