static OSCClient |
OSCClient.newUsing(String protocol) |
Creates a new instance of an OSCClient, using
default codec and a specific transport protocol.
|
static OSCClient |
OSCClient.newUsing(String protocol,
int port) |
Creates a new instance of an OSCClient, using
default codec and a specific transport protocol and port.
|
static OSCClient |
OSCClient.newUsing(String protocol,
int port,
boolean loopBack) |
Creates a new instance of an OSCClient, using
default codec and a specific transport protocol and port.
|
static OSCClient |
OSCClient.newUsing(String protocol,
InetSocketAddress localAddress) |
Creates a new instance of an OSCClient, using
default codec and a specific transport protocol and local socket address.
|
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.
|