Package Extasys.Network.TCP.Server.Listener

Examples of Extasys.Network.TCP.Server.Listener.TCPListener


     * listener can have.
     * @return the listener.
     */
    public TCPListener AddListener(String name, InetAddress ipAddress, int port, int maxConnections, int readBufferSize, int connectionTimeOut, int backLog)
    {
        TCPListener listener = new TCPListener(name, ipAddress, port, maxConnections, readBufferSize, connectionTimeOut, backLog);
        listener.setMyExtasysTCPServer(this);
        fListeners.add(listener);
        return listener;
    }
View Full Code Here


     * @param splitter is the message splitter.
     * @return the listener.
     */
    public TCPListener AddListener(String name, InetAddress ipAddress, int port, int maxConnections, int readBufferSize, int connectionTimeOut, int backLog, char splitter)
    {
        TCPListener listener = new TCPListener(name, ipAddress, port, maxConnections, readBufferSize, connectionTimeOut, backLog, splitter);
        listener.setMyExtasysTCPServer(this);
        fListeners.add(listener);
        return listener;
    }
View Full Code Here

     * @param splitter is the message splitter.
     * @return the listener.
     */
    public TCPListener AddListener(String name, InetAddress ipAddress, int port, int maxConnections, int readBufferSize, int connectionTimeOut, int backLog, String splitter)
    {
        TCPListener listener = new TCPListener(name, ipAddress, port, maxConnections, readBufferSize, connectionTimeOut, backLog, splitter);
        listener.setMyExtasysTCPServer(this);
        fListeners.add(listener);
        return listener;
    }
View Full Code Here

TOP

Related Classes of Extasys.Network.TCP.Server.Listener.TCPListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.