Packages

object AuralAttribute

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

Type Members

  1. trait Factory extends AnyRef
  2. trait GraphemeAware[T <: Txn[T]] extends AnyRef
  3. trait Observer[T <: Txn[T]] extends AnyRef
  4. sealed trait Scalar extends Value

    Value for which a no synth is needed, but only a scalar value that needs to be set on the target node.

  5. final case class ScalarValue(value: Float) extends Scalar with Product with Serializable
  6. final case class ScalarVector(values: IndexedSeq[Float]) extends Scalar with Product with Serializable
  7. final case class Stream(source: NodeRef, bus: AudioBus) extends Value with Product with Serializable

    Value for which a Synth is required that writes its signal to a bus, and the bus is then somehow mapped to the target node's control.

  8. trait Target[T <: Txn[T]] extends Observable[T, Value]

    An AuralAttribute.Target describes the mechanism by which the attribute inputs can contribute their values.

    An AuralAttribute.Target describes the mechanism by which the attribute inputs can contribute their values. It is internally connected to the process's node. One or multiple inputs then supply their values by calling put and detach themselves by calling remove. The target automatically manages summing multiple inputs. While the Value parameter for put corresponds to a particular attribute input, its valueOption gives the overall signal output as sent to the node. For instance, a stream input will have a bus to which is writes, whereas the target itself may provide a bus from which this node reads.

    It is possible for an attribute to call put repeatedly, the target will then automatically dispose the previous value it had associated with that attribute.

  9. sealed trait Value extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addFactory(f: Factory): Unit
  5. def addStartLevelViewFactory(f: StartLevelViewFactory): Unit
  6. def apply[T <: Txn[T]](key: String, value: Obj[T], observer: Observer[T])(implicit tx: T, context: AuralContext[T]): AuralAttribute[T]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def expr[T <: Txn[T], A](key: String, value: IExpr[T, A], observer: Observer[T])(implicit tx: T, context: AuralContext[T]): AuralAttribute[T]

    Attempts to create an aural attribute from an in-memory expression

  12. def factories: Iterable[Factory]
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. def startLevelView[T <: Txn[T]](obj: Obj[T])(implicit tx: T): ControlValuesView[T]
  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. object Target
  26. object Value

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped