Package org.jgroups.protocols.pbcast

Examples of org.jgroups.protocols.pbcast.FLUSH$FlushPhase


        public Channel createChannel(final JChannel ch) throws Exception {
            JChannel retval = new JChannel(ch);
            retval.setOpt(Channel.BLOCK, ch.getOpt(Channel.BLOCK));
            if(useFlush())
                Util.addFlush(retval, new FLUSH());
            return retval;
        }
View Full Code Here


        private JChannel createChannel(String configFile) throws Exception {
            JChannel ch = new JChannel(configFile);
            ch.setOpt(Channel.BLOCK, useBlocking());
            if(useFlush())
                Util.addFlush(ch, new FLUSH());
            return ch;
        }
View Full Code Here

        when(broadcaster.broadcast("message")).thenReturn(broadcastedMessage);
       
        JChannel channel1 = new JChannel();
        JChannel channel2 = new JChannel();
       
        channel1.getProtocolStack().insertProtocolAtTop(new FLUSH());
        channel2.getProtocolStack().insertProtocolAtTop(new FLUSH());
       
        JGroupsChannel node1 = new JGroupsChannel(channel1, "cluster");
        JGroupsChannel node2 = new JGroupsChannel(channel2, "cluster");
       
        node1.addBroadcaster(broadcaster);
View Full Code Here

        return result;
    }


    protected JChannel createChannel(String name) throws Exception {
        return new JChannel(Util.getTestStack(new FLUSH())).name(name);
    }
View Full Code Here

        }
    }


    protected JChannel createChannel(String name) throws Exception {
        return new JChannel(Util.getTestStack(new STATE_TRANSFER(), new FLUSH())).name(name);
    }
View Full Code Here

    protected static Protocol[] getProps() {
        return modify(Util.getTestStack());
    }

    protected static Protocol[] getFlushProps() {
        return modify(Util.getTestStack(new FLUSH()));
    }
View Full Code Here

                map.stop();
        }
    }

    protected JChannel createChannel(String name) throws Exception {
        return new JChannel(Util.getTestStack(new STATE_TRANSFER(), new FLUSH())).name(name);
    }
View Full Code Here

          new NAKACK2(),
          new UNICAST3(),
          new STABLE(),
          new GMS(),
          new FRAG2().fragSize(8000),
          new FLUSH()
        };

        return new JChannel(protocols).name(name);
    }
View Full Code Here

          new NAKACK2(),
          new UNICAST3(),
          new STABLE(),
          new GMS(),
          new FRAG2().fragSize(8000),
          new FLUSH()
        };

        return new JChannel(protocols).name(name);
    }
View Full Code Here

TOP

Related Classes of org.jgroups.protocols.pbcast.FLUSH$FlushPhase

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.