public GroupChannel createChannel() { channel = new GroupChannel(); ((ReceiverBase)channel.getChannelReceiver()).setAutoBind(100); interceptor = new NonBlockingCoordinator() { @Override public void fireInterceptorEvent(InterceptorEvent event) { status = event.getEventTypeDesc(); int type = event.getEventType(); boolean display = VIEW_EVENTS[type]; if ( display ) parent.printScreen(); try { Thread.sleep(SLEEP_TIME); }catch ( Exception x){ // Ignore } } }; channel.addInterceptor(interceptor); channel.addInterceptor(new TcpFailureDetector()); channel.addInterceptor(new MessageDispatch15Interceptor()); return channel; }
/** * Add ChannelInterceptors. The order of the interceptors that are added will depend on the * membership management scheme */ private void addInterceptors() { if (log.isDebugEnabled()) { log.debug("Adding Interceptors..."); } TcpPingInterceptor tcpPingInterceptor = new TcpPingInterceptor(); tcpPingInterceptor.setInterval(10000); channel.addInterceptor(tcpPingInterceptor); if (log.isDebugEnabled()) { log.debug("Added TCP Ping Interceptor"); } // Add a reliable failure detector TcpFailureDetector tcpFailureDetector = new TcpFailureDetector(); // tcpFailureDetector.setPrevious(dfi); //TODO: check this tcpFailureDetector.setReadTestTimeout(120000); tcpFailureDetector.setConnectTimeout(180000); channel.addInterceptor(tcpFailureDetector); if (log.isDebugEnabled()) { log.debug("Added TCP Failure Detector"); } // Add the NonBlockingCoordinator. // channel.addInterceptor(new Axis2Coordinator(membershipListener)); staticMembershipInterceptor = new StaticMembershipInterceptor(); staticMembershipInterceptor.setLocalMember(primaryMembershipManager.getLocalMember()); primaryMembershipManager.setupStaticMembershipManagement(staticMembershipInterceptor); channel.addInterceptor(staticMembershipInterceptor); if (log.isDebugEnabled()) { log.debug("Added Static Membership Interceptor"); } channel.getMembershipService().setDomain(localDomain); mode.addInterceptors(channel); if (atmostOnceMessageSemantics) { // Add a AtMostOnceInterceptor to support at-most-once message processing semantics AtMostOnceInterceptor atMostOnceInterceptor = new AtMostOnceInterceptor(); atMostOnceInterceptor.setOptionFlag(TribesConstants.AT_MOST_ONCE_OPTION); channel.addInterceptor(atMostOnceInterceptor); if (log.isDebugEnabled()) { log.debug("Added At-most-once Interceptor"); } } if (preserverMsgOrder) { // Add the OrderInterceptor to preserve sender ordering OrderInterceptor orderInterceptor = new OrderInterceptor(); orderInterceptor.setOptionFlag(TribesConstants.MSG_ORDER_OPTION); channel.addInterceptor(orderInterceptor); if (log.isDebugEnabled()) { log.debug("Added Message Order Interceptor"); } } }
/** * Add ChannelInterceptors. The order of the interceptors that are added will depend on the * membership management scheme */ private void addInterceptors() { if (log.isDebugEnabled()) { log.debug("Adding Interceptors..."); } // Add a reliable failure detector TcpFailureDetector tcpFailureDetector = new TcpFailureDetector(); tcpFailureDetector.setConnectTimeout(30000); channel.addInterceptor(tcpFailureDetector); if (log.isDebugEnabled()) { log.debug("Added TCP Failure Detector"); } // Add the NonBlockingCoordinator. // channel.addInterceptor(new Axis2Coordinator(membershipListener)); channel.getMembershipService().setDomain(domain); mode.addInterceptors(channel); if (atmostOnceMessageSemantics) { // Add a AtMostOnceInterceptor to support at-most-once message processing semantics AtMostOnceInterceptor atMostOnceInterceptor = new AtMostOnceInterceptor(); atMostOnceInterceptor.setOptionFlag(TribesConstants.AT_MOST_ONCE_OPTION); channel.addInterceptor(atMostOnceInterceptor); if (log.isDebugEnabled()) { log.debug("Added At-most-once Interceptor"); } } if (preserverMsgOrder) { // Add the OrderInterceptor to preserve sender ordering OrderInterceptor orderInterceptor = new OrderInterceptor(); orderInterceptor.setOptionFlag(TribesConstants.MSG_ORDER_OPTION); channel.addInterceptor(orderInterceptor); if (log.isDebugEnabled()) { log.debug("Added Message Order Interceptor"); } } }