Packages

object UGenGraphBuilder

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

Type Members

  1. final case class AttributeKey(name: String) extends Key with Product with Serializable

    A scalar value found in the attribute map.

  2. trait Complete[T <: Txn[T]] extends State[T]
  3. trait Context[T <: Txn[T]] extends AnyRef
  4. trait IO[T <: Txn[T]] extends AnyRef
  5. trait Incomplete[T <: Txn[T]] extends State[T]
  6. trait Input[V <: Value] extends AnyRef
  7. trait Key extends AnyRef

    A pure marker trait to rule out some type errors.

  8. final case class MissingIn(input: Key) extends ControlThrowable with Product with Serializable

    An exception thrown when during incremental build an input is required for which the underlying source cannot yet be determined.

    An exception thrown when during incremental build an input is required for which the underlying source cannot yet be determined.

    This can be a case class because it is used only within the same transaction, and thereby the timed argument does not become stale.

  9. trait Requester[T <: Txn[T]] extends IO[T]
  10. case class ScanIn(numChannels: Int, fixed: Boolean) extends Product with Serializable
  11. sealed trait State[T <: Txn[T]] extends IO[T]
  12. type Unit = Unit.type
  13. trait Value extends AnyRef

    A pure marker trait to rule out some type errors.

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 apply[T <: Txn[T]](context: Context[T], proc: Proc[T])(implicit tx: T): State[T]

    Note: The resulting object is mutable, therefore must not be shared across threads and also must be created and consumed within the same transaction.

    Note: The resulting object is mutable, therefore must not be shared across threads and also must be created and consumed within the same transaction. That is to say, to be transactionally safe, it may only be stored in a TxnLocal, but not a full STM ref.

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def get: UGenGraphBuilder
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def init[T <: Txn[T]](proc: Proc[T])(implicit tx: T): Incomplete[T]
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): scala.Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def notifyAll(): scala.Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(arg0: Long, arg1: Int): scala.Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): scala.Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  21. final def wait(): scala.Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. object Input
  23. case object Unit extends Value with Product with Serializable

Deprecated Value Members

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

Inherited from AnyRef

Inherited from Any

Ungrouped