File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
boot-netty-rpc-core/src/main/java/io/github/forezp/netty/rpc/core/protocol/client Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -37,13 +37,6 @@ public NettyClientHandler(ExcutorContainer excutorContainer) {
37
37
@ Override
38
38
protected void channelRead0 (ChannelHandlerContext ctx , final NettyRpcResponse response ) throws Exception {
39
39
40
- ThreadPoolExecutor executor = ThreadPoolFactory .createClientPoolExecutor ( response .getInterfaze () );
41
-
42
- int coreSize = executor .getCorePoolSize ();
43
- int activeCount = executor .getActiveCount ();
44
- int queueSize = executor .getQueue ().size ();
45
- System .out .println ( "executor" + executor .toString () + " coreSize:" + coreSize + " activeCount:" + activeCount + " queueSize :" + queueSize );
46
-
47
40
ThreadPoolFactory .createClientPoolExecutor ( response .getInterfaze () ).submit ( new Callable <NettyRpcResponse >() {
48
41
49
42
@ Override
You can’t perform that action at this time.
0 commit comments