Package Extasys.Network.TCP.Client.Connectors

Examples of Extasys.Network.TCP.Client.Connectors.TCPConnector


     * bytes.
     * @return the connector.
     */
    public TCPConnector AddConnector(String name, InetAddress serverIP, int serverPort, int readBufferSize)
    {
        TCPConnector connector = new TCPConnector(this, name, serverIP, serverPort, readBufferSize);
        fConnectors.add(connector);
        return connector;
    }
View Full Code Here


     * @param ETX is the End of Text character.
     * @return the connector.
     */
    public TCPConnector AddConnector(String name, InetAddress serverIP, int serverPort, int readBufferSize, char ETX)
    {
        TCPConnector connector = new TCPConnector(this, name, serverIP, serverPort, readBufferSize, ETX);
        fConnectors.add(connector);
        return connector;
    }
View Full Code Here

     * @param splitter is the message splitter.
     * @return the connector.
     */
    public TCPConnector AddConnector(String name, InetAddress serverIP, int serverPort, int readBufferSize, String splitter)
    {
        TCPConnector connector = new TCPConnector(this, name, serverIP, serverPort, readBufferSize, splitter);
        fConnectors.add(connector);
        return connector;
    }
View Full Code Here

TOP

Related Classes of Extasys.Network.TCP.Client.Connectors.TCPConnector

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.