Package org.apache.catalina.tribes.tcp

Examples of org.apache.catalina.tribes.tcp.ReplicationListener


            } else if ("-mbind".equals(args[i])) {
                mbind = args[++i];
            }
        }

        ReplicationListener rl = new ReplicationListener();
        rl.setTcpListenAddress(bind);
        rl.setTcpListenPort(port);
        rl.setTcpSelectorTimeout(tcpseltimeout);
        rl.setTcpThreadCount(tcpthreadcount);
        rl.getBind();
        rl.setSendAck(ack);
        rl.setSynchronized(sync);

        ReplicationTransmitter ps = new ReplicationTransmitter();
        ps.setReplicationMode(sender);
        ps.setAckTimeout(acktimeout);
        ps.setAutoConnect(autoconnect);
View Full Code Here

TOP

Related Classes of org.apache.catalina.tribes.tcp.ReplicationListener

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.