Trait

de.sciss.osc.PacketCodec

Builder

Related Doc: package PacketCodec

Permalink

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
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def arrays(): Builder

    Permalink

    Enables support for the OSC 1.0 extended spec's array tags.

    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

    Permalink
  3. abstract def booleansAsInts(): Builder

    Permalink
  4. abstract def build: PacketCodec

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

    Permalink
  6. abstract def doubles(): Builder

    Permalink
  7. abstract def doublesAsFloats(): Builder

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

    Permalink
  9. abstract def impulse(): Builder

    Permalink
  10. abstract def longs(): Builder

    Permalink
  11. abstract def longsAsInts(): Builder

    Permalink
  12. abstract def none(): Builder

    Permalink
  13. abstract def packetsAsBlobs(): Builder

    Permalink
  14. abstract def symbols(): Builder

    Permalink
  15. abstract def timetags(): Builder

    Permalink
  16. abstract def v1_0(): Builder

    Permalink

    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: 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 asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. var charsetName: String

    Permalink

    The character encoding to use for Strings.

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

  6. def clone(): AnyRef

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

    Permalink
  8. final def doubleToSinglePrecision(): Builder

    Permalink
  9. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  18. final def scsynth(): Builder

    Permalink

    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.

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

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

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

    Permalink

    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.

    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).

  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