本文整理汇总了Java中org.apache.catalina.tribes.group.interceptors.TcpFailureDetector类的典型用法代码示例。如果您正苦于以下问题:Java TcpFailureDetector类的具体用法?Java TcpFailureDetector怎么用?Java TcpFailureDetector使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TcpFailureDetector类属于org.apache.catalina.tribes.group.interceptors包,在下文中一共展示了TcpFailureDetector类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: createChannel
import org.apache.catalina.tribes.group.interceptors.TcpFailureDetector; //导入依赖的package包/类
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;
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:21,代码来源:CoordinationDemo.java
示例2: addInterceptors
import org.apache.catalina.tribes.group.interceptors.TcpFailureDetector; //导入依赖的package包/类
/**
* 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");
}
}
}
开发者ID:wso2,项目名称:wso2-axis2,代码行数:61,代码来源:WkaBasedMembershipScheme.java
示例3: addInterceptors
import org.apache.catalina.tribes.group.interceptors.TcpFailureDetector; //导入依赖的package包/类
/**
* 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");
}
}
}
开发者ID:wso2,项目名称:wso2-axis2,代码行数:45,代码来源:MulticastBasedMembershipScheme.java
注:本文中的org.apache.catalina.tribes.group.interceptors.TcpFailureDetector类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论