Package org.apache.catalina.tribes.mcast

Examples of org.apache.catalina.tribes.mcast.McastService


        ps.setReplicationMode(sender);
        ps.setAckTimeout(acktimeout);
        ps.setAutoConnect(autoconnect);
        ps.setWaitForAck(ack);

        McastService service = new McastService();
        service.setMcastAddr(mcastaddr);
        if (mbind != null) service.setMcastBindAddress(mbind);
        service.setMcastFrequency(mcastfreq);
        service.setMcastDropTime(mcastdrop);
        service.setMcastPort(mcastport);

        ManagedChannel channel = new GroupChannel();
        channel.setChannelReceiver(rl);
        channel.setChannelSender(ps);
        channel.setMembershipService(service);
View Full Code Here

TOP

Related Classes of org.apache.catalina.tribes.mcast.McastService

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.