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 |
OSCClient.send(OSCPacket p) |
Sends an OSC packet (bundle or message) to the target
network address.
|
abstract void |
OSCServer.send(OSCPacket p,
SocketAddress target) |
Sends an OSC packet (bundle or message) to the given
network address.
|
void |
OSCTransmitter.send(OSCPacket p) |
Sends an OSC packet (bundle or message) to the default
network address, using the current codec.
|
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.
|