Uses of Interface
io.socket.IOCallback

Uses of IOCallback in io.socket
 

Classes in io.socket that implement IOCallback
(package private)  class IOConnection
          The Class IOConnection.
 

Fields in io.socket declared as IOCallback
static IOCallback IOConnection.DUMMY_CALLBACK
          A dummy callback used when IOConnection receives a unexpected message.
 

Methods in io.socket that return IOCallback
 IOCallback SocketIO.getCallback()
          Gets the callback.
 

Methods in io.socket with parameters of type IOCallback
 void SocketIO.connect(IOCallback callback)
          connects to an already set host.
 void SocketIO.connect(java.lang.String url, IOCallback callback)
          connects to supplied host using callback.
 void SocketIO.connect(java.net.URL url, IOCallback callback)
          connects to supplied host using callback.
 

Constructors in io.socket with parameters of type IOCallback
SocketIO(java.lang.String url, IOCallback callback)
          Instantiates a new socket.io object and connects to the given url.
SocketIO(java.net.URL url, IOCallback callback)
          Instantiates a new socket.io object and connects to the given url.