Uses of Class
de.sciss.net.OSCPacket

Packages that use OSCPacket
de.sciss.net   
 

Uses of OSCPacket in de.sciss.net
 

Subclasses of OSCPacket in de.sciss.net
 class OSCBundle
          Implementation of the OSC-Bundle which assembles several OSC-Packets under the same timetag.
 class OSCMessage
          Class for decoding OSC messages from received datagrams or encoding OSC message for sending to a target socket.
 

Methods in de.sciss.net that return OSCPacket
 OSCPacket OSCPacketCodec.decode(ByteBuffer b)
          Creates a new packet decoded from the ByteBuffer.
static OSCPacket OSCPacket.decode(ByteBuffer b)
          Creates a new packet decoded from the ByteBuffer, using the default codec.
 OSCPacket OSCBundle.getPacket(int idx)
          Gets the OSCPacket at the provided index which must be between 0 inclusive and getPacketCount() exclusive.
 

Methods in de.sciss.net with parameters of type OSCPacket
 void OSCBundle.addPacket(OSCPacket p)
          Adds a new OSCPacket to the tail of the bundle.
 void OSCPacketCodec.encode(OSCPacket p, ByteBuffer b)
          Encodes the contents of this packet into the provided ByteBuffer, beginning at the buffer's current position.
 int OSCPacketCodec.getSize(OSCPacket p)
          Calculates and returns the packet's size in bytes
static void OSCPacket.printTextOn(PrintStream stream, OSCPacket p)
          Prints a text version of a packet to a given stream.
 void OSCTransmitter.send(OSCPacket p)
          Sends an OSC packet (bundle or message) to the default network address, using the current codec.
 void OSCClient.send(OSCPacket p)
          Sends an OSC packet (bundle or message) to the target network address.
abstract  void OSCTransmitter.send(OSCPacketCodec c, OSCPacket p)
          Sends an OSC packet (bundle or message) to the default network address, using a particular codec.
abstract  void OSCTransmitter.send(OSCPacketCodec c, OSCPacket p, SocketAddress target)
          Sends an OSC packet (bundle or message) to the given network address, using a particular codec.
 void OSCTransmitter.send(OSCPacket p, SocketAddress target)
          Sends an OSC packet (bundle or message) to the given network address, using the current codec.
abstract  void OSCServer.send(OSCPacket p, SocketAddress target)
          Sends an OSC packet (bundle or message) to the given network address.