object Packet
- Alphabetic
- By Inheritance
- Packet
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def padToAlign(b: ByteBuffer): Unit
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
- def printEscapedStringOn(stream: PrintStream, str: String): Unit
- def printHexOn(b: ByteBuffer, stream: PrintStream): Unit
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 ofPacket
.- 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#limit()
java.nio.Buffer#position()
- def printTextOn(p: Packet, c: PacketCodec, stream: PrintStream): Unit
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
- def readString(b: ByteBuffer): String
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
- def skipToAlign(b: ByteBuffer): Unit
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
- def skipToValues(b: ByteBuffer): Unit
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
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def terminateAndPadToAlign(b: ByteBuffer): Unit
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
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- object Atom
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated