de.sciss.osc.PacketCodec

Builder

sealed trait Builder extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Builder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def arrays(): Builder

    Enables support for the OSC 1.

    Enables support for the OSC 1.0 extended spec's array tags. An 'array' is written out as a type tag '[' (without associated value), followed by the normal encoding of the array elements, and finally another type tag ']' (without associated value).

    On the Scala side, we wish to enforce a immutable type, hence collection.immutable.IndexedSeq was chosen over Array for the decoder, while the encoder accepts any Traversable

  2. abstract def booleans(): Builder

  3. abstract def booleansAsInts(): Builder

  4. abstract def build: PacketCodec

  5. abstract def decode[A](tag: Byte, dec: Decoder[A]): Builder

  6. abstract def doubles(): Builder

  7. abstract def doublesAsFloats(): Builder

  8. abstract def encode[A](clazz: Class[A], enc: Encoder[A]): Builder

  9. abstract def impulse(): Builder

  10. abstract def longs(): Builder

  11. abstract def longsAsInts(): Builder

  12. abstract def none(): Builder

  13. abstract def packetsAsBlobs(): Builder

  14. abstract def symbols(): Builder

  15. abstract def timetags(): Builder

  16. abstract def v1_0(): Builder

    Resets the builder to strict OSC 1.

    Resets the builder to strict OSC 1.0 spec, meaning that it accepts only the pairs Int - i, Float - f, String - s, and ByteBuffer - b.

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. var charsetName: String

    The character encoding to use for Strings.

    The character encoding to use for Strings. Defaults to "UTF-8"

  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def doublePrecision(): Builder

  10. final def doubleToSinglePrecision(): Builder

  11. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

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

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

    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. final def scsynth(): Builder

    Resets the builder to SuperCollider server spec.

    Resets the builder to SuperCollider server spec. That is, strict OSC 1.0, plus array support, down-casting of 64-bit numbers to 32-bit, encoding booleans as integers, and packet arguments as blobs, and.

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

    Definition Classes
    AnyRef
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. final def v1_1(): Builder

    Resets the builder to strict OSC 1.

    Resets the builder to strict OSC 1.1 spec, meaning that it accepts only the OSC 1.0 pairs, as well as Boolean - T and F, None - N, Unit - I, Timetag - t.

    Note that this does not affect the way that packets are encoded with on a TCP stream (see the TCP documentation for more information).

  24. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped