void |
OSCPacket.encode(OSCPacketCodec c,
ByteBuffer b) |
Encodes the contents of this packet
into the provided ByteBuffer,
beginning at the buffer's current position, using a
given codec.
|
int |
OSCPacket.getSize(OSCPacketCodec c) |
Calculates and returns
the packet's size in bytes,
using a given codec.
|
static OSCClient |
OSCClient.newUsing(OSCPacketCodec c,
String protocol) |
Creates a new instance of an OSCClient, using
a specific codec and transport protocol.
|
static OSCClient |
OSCClient.newUsing(OSCPacketCodec c,
String protocol,
int port) |
Creates a new instance of an OSCClient, using
a specific codec and transport protocol and port.
|
static OSCClient |
OSCClient.newUsing(OSCPacketCodec c,
String protocol,
int port,
boolean loopBack) |
Creates a new instance of an OSCClient, using
a specific codec and transport protocol and port.
|
static OSCClient |
OSCClient.newUsing(OSCPacketCodec c,
String protocol,
InetSocketAddress localAddress) |
Creates a new instance of an OSCClient, using
a given codec, a specific transport protocol and local socket address.
|
static OSCReceiver |
OSCReceiver.newUsing(OSCPacketCodec c,
String protocol) |
Creates a new instance of a revivable OSCReceiver, using
a specific codec and transport protocol.
|
static OSCReceiver |
OSCReceiver.newUsing(OSCPacketCodec c,
String protocol,
int port) |
Creates a new instance of a revivable OSCReceiver, using
a specific codec and transport protocol and port.
|
static OSCReceiver |
OSCReceiver.newUsing(OSCPacketCodec c,
String protocol,
int port,
boolean loopBack) |
Creates a new instance of a revivable OSCReceiver, using
a specific codec and transport protocol and port.
|
static OSCReceiver |
OSCReceiver.newUsing(OSCPacketCodec c,
String protocol,
InetSocketAddress localAddress) |
Creates a new instance of a revivable OSCReceiver, using
a specific codec and transport protocol and local socket address.
|
static OSCReceiver |
OSCReceiver.newUsing(OSCPacketCodec c,
DatagramChannel dch) |
Creates a new instance of a non-revivable OSCReceiver, using
a specific codec and UDP transport on a given channel.
|
static OSCReceiver |
OSCReceiver.newUsing(OSCPacketCodec c,
SocketChannel sch) |
Creates a new instance of a non-revivable OSCReceiver, using
a specific codec and TCP transport on a given channel.
|
static OSCServer |
OSCServer.newUsing(OSCPacketCodec c,
String protocol) |
Creates a new instance of an OSCServer, using
a specific codec and transport protocol.
|
static OSCServer |
OSCServer.newUsing(OSCPacketCodec c,
String protocol,
int port) |
Creates a new instance of an OSCServer, using
a specific codec and transport protocol and port.
|
static OSCServer |
OSCServer.newUsing(OSCPacketCodec c,
String protocol,
int port,
boolean loopBack) |
Creates a new instance of an OSCServer, using
a specific codec and transport protocol and port.
|
static OSCServer |
OSCServer.newUsing(OSCPacketCodec c,
String protocol,
InetSocketAddress localAddress) |
Creates a new instance of an OSCServer, using
a given codec, a specific transport protocol and local socket address.
|
static OSCTransmitter |
OSCTransmitter.newUsing(OSCPacketCodec c,
String protocol) |
Creates a new instance of an OSCTransmitter, using
a specific codec and transport protocol.
|
static OSCTransmitter |
OSCTransmitter.newUsing(OSCPacketCodec c,
String protocol,
int port) |
Creates a new instance of an OSCTransmitter, using
a specific codec and transport protocol and port.
|
static OSCTransmitter |
OSCTransmitter.newUsing(OSCPacketCodec c,
String protocol,
int port,
boolean loopBack) |
Creates a new instance of an OSCTransmitter, using
a specific codec and transport protocol and port.
|
static OSCTransmitter |
OSCTransmitter.newUsing(OSCPacketCodec c,
String protocol,
InetSocketAddress localAddress) |
Creates a new instance of an OSCTransmitter, using
a specific codec and transport protocol and local socket address.
|
static OSCTransmitter |
OSCTransmitter.newUsing(OSCPacketCodec c,
DatagramChannel dch) |
Creates a new instance of an OSCTransmitter, using
a specific codec and UDP transport on a given channel.
|
static OSCTransmitter |
OSCTransmitter.newUsing(OSCPacketCodec c,
SocketChannel sch) |
Creates a new instance of an OSCTransmitter, using
a specific codec and TCP transport on a given channel.
|
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 |
OSCChannel.setCodec(OSCPacketCodec c) |
Specifies which codec is used in packet coding and decoding.
|
void |
OSCClient.setCodec(OSCPacketCodec c) |
|
void |
OSCReceiver.setCodec(OSCPacketCodec c) |
|
void |
OSCServer.setCodec(OSCPacketCodec c) |
|
abstract void |
OSCServer.setCodec(OSCPacketCodec c,
SocketAddress target) |
Specifies which codec is used in packet coding and decoding
for a given client socket.
|
void |
OSCTransmitter.setCodec(OSCPacketCodec c) |
|