KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > nio > channels > SelectionKey > Top Examples

  • org.jgroups.util.Proxy1_4
    Redirects incoming TCP connections to other hosts/ports. All redirections are defined in a file as for example <pre> 127.0.0.1:8888=www.ibm.com:80 localhost:80=pop.mail.yahoo.com:110 </pre> The first line forwards all requests to port 8888 on to www.ibm.com at port 80 (it also forwards ...
  • org.apache.catalina.cluster.tcp.TcpReplicationThread
    A worker thread class which can drain channels and echo-back the input. Each instance is constructed with a reference to the owning thread pool object. When started, the thread loops forever waiting to be awakened to service the channel associated with a SelectionKey object. The worker is tasked b ...
  • org.jdesktop.jdic.browser.MsgClient
    An internal class that implements a socket client. @author Kyle Yuan @version 0.1, 03/07/30 socket message delimiter. use these delimiters assuming they won't appear in the message itself. a long message may be devided into several pieces: a head piece, multiple middle pieces and an end piece. c ...
  • org.quickserver.net.server.ClientHandler
    Class that handles clients for QuickServer. <p> This class is used by {@link QuickServer} to handle each new client connected. This class is responsible to handle client sockets. It can operate in both blocking mode and non-blocking mode (java nio).</p> @author Akshathkumar Shetty @aut ...
  • org.quickserver.net.server.QuickServer
    Main class of QuickServer library. This class is used to create multi client servers quickly. <p> Ones a client is connected, it creates {@link ClientHandler} object, which is run using any thread available from the pool of threads maintained by {@link org.quickserver.util.pool.thread.Client ...
  • com.caucho.server.port.AbstractSelectManager
    Represents a protocol connection.
Popular Tags