Java Code Examples for org.apache.rocketmq.common.protocol.RequestCode#CHECK_CLIENT_CONFIG
The following examples show how to use
org.apache.rocketmq.common.protocol.RequestCode#CHECK_CLIENT_CONFIG .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ClientManageProcessor.java From rocketmq-4.3.0 with Apache License 2.0 | 6 votes |
@Override public RemotingCommand processRequest(ChannelHandlerContext ctx, RemotingCommand request) throws RemotingCommandException { switch (request.getCode()) { // 心跳监测=》 case RequestCode.HEART_BEAT: return this.heartBeat(ctx, request); // 取消注册client=》 case RequestCode.UNREGISTER_CLIENT: return this.unregisterClient(ctx, request); // 检查client的配置=》 case RequestCode.CHECK_CLIENT_CONFIG: return this.checkClientConfig(ctx, request); default: break; } return null; }
Example 2
Source File: ClientManageProcessor.java From rocketmq-read with Apache License 2.0 | 6 votes |
/** * * @param ctx ctx * @param request request * @return ; * @throws RemotingCommandException ; */ @Override public RemotingCommand processRequest(ChannelHandlerContext ctx, RemotingCommand request) throws RemotingCommandException { switch (request.getCode()) { case RequestCode.HEART_BEAT: //心跳 return this.heartBeat(ctx, request); case RequestCode.UNREGISTER_CLIENT: //取消注册客户端 return this.unregisterClient(ctx, request); case RequestCode.CHECK_CLIENT_CONFIG: //检测客户端配置 return this.checkClientConfig(ctx, request); default: break; } return null; }
Example 3
Source File: ClientManageProcessor.java From DDMQ with Apache License 2.0 | 5 votes |
@Override public RemotingCommand processRequest(ChannelHandlerContext ctx, RemotingCommand request) throws RemotingCommandException { switch (request.getCode()) { case RequestCode.HEART_BEAT: return this.heartBeat(ctx, request); case RequestCode.UNREGISTER_CLIENT: return this.unregisterClient(ctx, request); case RequestCode.CHECK_CLIENT_CONFIG: return this.checkClientConfig(ctx, request); default: break; } return null; }
Example 4
Source File: ClientManageProcessor.java From DDMQ with Apache License 2.0 | 5 votes |
@Override public RemotingCommand processRequest(ChannelHandlerContext ctx, RemotingCommand request) throws RemotingCommandException { switch (request.getCode()) { case RequestCode.HEART_BEAT: return this.heartBeat(ctx, request); case RequestCode.UNREGISTER_CLIENT: return this.unregisterClient(ctx, request); case RequestCode.CHECK_CLIENT_CONFIG: return this.checkClientConfig(ctx, request); default: break; } return null; }
Example 5
Source File: ClientManageProcessor.java From rocketmq-all-4.1.0-incubating with Apache License 2.0 | 5 votes |
@Override public RemotingCommand processRequest(ChannelHandlerContext ctx, RemotingCommand request) throws RemotingCommandException { switch (request.getCode()) { case RequestCode.HEART_BEAT: return this.heartBeat(ctx, request); case RequestCode.UNREGISTER_CLIENT: return this.unregisterClient(ctx, request); case RequestCode.CHECK_CLIENT_CONFIG: return this.checkClientConfig(ctx, request); default: break; } return null; }
Example 6
Source File: ClientManageProcessor.java From rocketmq with Apache License 2.0 | 5 votes |
@Override public RemotingCommand processRequest(ChannelHandlerContext ctx, RemotingCommand request) throws RemotingCommandException { switch (request.getCode()) { case RequestCode.HEART_BEAT: return this.heartBeat(ctx, request); case RequestCode.UNREGISTER_CLIENT: return this.unregisterClient(ctx, request); case RequestCode.CHECK_CLIENT_CONFIG: return this.checkClientConfig(ctx, request); default: break; } return null; }