Object/Trait

de.sciss.osc

Packet

Related Docs: trait Packet | package osc

Permalink

object Packet

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

Type Members

  1. trait Atom[A] extends Encoder[A] with Decoder[A]

    Permalink

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. object Atom

    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 getClass(): Class[_]

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  16. def padToAlign(b: ByteBuffer): Unit

    Permalink

    Adds as many zero padding bytes as necessary to stop on a 4 byte alignment.

    Adds as many zero padding bytes as necessary to stop on a 4 byte alignment. if the buffer position is already on a 4 byte alignment when calling this function, this method does nothing.

    b

    the buffer to align

    Annotations
    @throws( classOf[BufferOverflowException] )
    Exceptions thrown

    BufferOverflowException in case the padding exceeds the provided buffer limit

  17. def printEscapedStringOn(stream: PrintStream, str: String): Unit

    Permalink
  18. def printHexOn(b: ByteBuffer, stream: PrintStream): Unit

    Permalink

    Prints a hex-dump version of a packet to a given stream.

    Prints a hex-dump version of a packet to a given stream. The format is similar to scsynth using dump mode 2. Unlike printTextOn this takes a raw received or encoded byte buffer and not a decoded instance of Packet.

    b

    the byte buffer containing the packet. the current position is saved, and the printing is performed from position 0 to the limit of the buffer. the previous position is restored.

    stream

    the print stream to use, for example System.out

    See also

    java.nio.Buffer#position()

    java.nio.Buffer#limit()

  19. def printTextOn(p: Packet, c: PacketCodec, stream: PrintStream): Unit

    Permalink

    Prints a text version of a packet to a given stream.

    Prints a text version of a packet to a given stream. The format is similar to scsynth using dump mode 1. Bundles will be printed with each message on a separate line and increasing indent.

    p

    the packet to print (either a message or bundle)

    stream

    the print stream to use, for example System.out

  20. def readString(b: ByteBuffer): String

    Permalink

    Reads a null terminated string from the current buffer position

    Reads a null terminated string from the current buffer position

    b

    buffer to read from. position and limit must be set appropriately. new position will be right after the terminating zero byte when the method returns

    Annotations
    @throws( classOf[BufferUnderflowException] )
    Exceptions thrown

    BufferUnderflowException in case the string exceeds the provided buffer limit

  21. def skipToAlign(b: ByteBuffer): Unit

    Permalink

    Advances the current buffer position to an integer of four bytes.

    Advances the current buffer position to an integer of four bytes. The position is not altered if it is already aligned to a four byte boundary.

    b

    the buffer to advance

    Annotations
    @throws( classOf[BufferUnderflowException] )
    Exceptions thrown

    BufferUnderflowException in case the skipping exceeds the provided buffer limit

  22. def skipToValues(b: ByteBuffer): Unit

    Permalink

    Advances in the buffer as long there are non-zero bytes, then advance to a four byte alignment.

    Advances in the buffer as long there are non-zero bytes, then advance to a four byte alignment.

    b

    the buffer to advance

    Annotations
    @throws( classOf[BufferUnderflowException] )
    Exceptions thrown

    BufferUnderflowException in case the reads exceed the provided buffer limit

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

    Permalink
    Definition Classes
    AnyRef
  24. def terminateAndPadToAlign(b: ByteBuffer): Unit

    Permalink

    Adds as many zero padding bytes as necessary to stop on a 4 byte alignment.

    Adds as many zero padding bytes as necessary to stop on a 4 byte alignment. if the buffer position is already on a 4 byte alignment when calling this function, another 4 zero padding bytes are added. buffer position will be on the new aligned boundary when return from this method

    b

    the buffer to pad

    Annotations
    @throws( classOf[BufferOverflowException] )
    Exceptions thrown

    BufferOverflowException in case the padding exceeds the provided buffer limit

  25. def toString(): String

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped