Uses of Class
de.sciss.net.OSCReceiver

Packages that use OSCReceiver
de.sciss.net   
 

Uses of OSCReceiver in de.sciss.net
 

Methods in de.sciss.net that return OSCReceiver
static OSCReceiver OSCReceiver.newUsing(DatagramChannel dch)
          Creates a new instance of a non-revivable OSCReceiver, using default codec and UDP transport on a given channel.
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 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, 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, 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(SocketChannel sch)
          Creates a new instance of a non-revivable OSCReceiver, using default codec and TCP transport on a given channel.
static OSCReceiver OSCReceiver.newUsing(String protocol)
          Creates a new instance of a revivable OSCReceiver, using default codec and a specific transport protocol.
static OSCReceiver OSCReceiver.newUsing(String protocol, InetSocketAddress localAddress)
          Creates a new instance of a revivable OSCReceiver, using default codec and a specific transport protocol and local socket address.
static OSCReceiver OSCReceiver.newUsing(String protocol, int port)
          Creates a new instance of a revivable OSCReceiver, using default codec and a specific transport protocol and port.
static OSCReceiver OSCReceiver.newUsing(String protocol, int port, boolean loopBack)
          Creates a new instance of a revivable OSCReceiver, using default codec and a specific transport protocol and port.