Uses of Class
de.sciss.net.OSCPacketCodec

Packages that use OSCPacketCodec
de.sciss.net   
 

Uses of OSCPacketCodec in de.sciss.net
 

Fields in de.sciss.net declared as OSCPacketCodec
protected  OSCPacketCodec OSCServer.defaultCodec
           
 

Methods in de.sciss.net that return OSCPacketCodec
 OSCPacketCodec OSCTransmitter.getCodec()
           
 OSCPacketCodec OSCServer.getCodec()
           
 OSCPacketCodec OSCReceiver.getCodec()
           
 OSCPacketCodec OSCClient.getCodec()
           
 OSCPacketCodec OSCChannel.getCodec()
          Queries the codec used in packet coding and decoding.
abstract  OSCPacketCodec OSCServer.getCodec(SocketAddress target)
          Queries the codec used in packet coding and decoding for a given client socket.
static OSCPacketCodec OSCPacketCodec.getDefaultCodec()
          Queries the standard codec which is used in all implicit client and server creations.
 

Methods in de.sciss.net with parameters of type OSCPacketCodec
 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 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 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 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.
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 OSCTransmitter OSCTransmitter.newUsing(OSCPacketCodec c, String protocol)
          Creates a new instance of an OSCTransmitter, using a specific codec and transport protocol.
static OSCServer OSCServer.newUsing(OSCPacketCodec c, String protocol)
          Creates a new instance of an OSCServer, using a specific codec and transport protocol.
static OSCReceiver OSCReceiver.newUsing(OSCPacketCodec c, String protocol)
          Creates a new instance of a revivable OSCReceiver, using a specific codec and transport protocol.
static OSCClient OSCClient.newUsing(OSCPacketCodec c, String protocol)
          Creates a new instance of an OSCClient, using a specific codec and transport protocol.
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 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 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 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 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 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 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 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 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 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 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 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.
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.setCodec(OSCPacketCodec c)
           
 void OSCServer.setCodec(OSCPacketCodec c)
           
 void OSCReceiver.setCodec(OSCPacketCodec c)
           
 void OSCClient.setCodec(OSCPacketCodec c)
           
 void OSCChannel.setCodec(OSCPacketCodec c)
          Specifies which codec is used in packet coding and decoding.
abstract  void OSCServer.setCodec(OSCPacketCodec c, SocketAddress target)
          Specifies which codec is used in packet coding and decoding for a given client socket.
 

Constructors in de.sciss.net with parameters of type OSCPacketCodec
OSCReceiver(OSCPacketCodec c, String protocol, InetSocketAddress localAddress, boolean revivable)
           
OSCServer(OSCPacketCodec c, String protocol)
           
OSCTransmitter(OSCPacketCodec c, String protocol, InetSocketAddress localAddress, boolean revivable)