1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty.channel;
17
18
19
20
21
22
23 public class ThreadPerChannelEventLoop extends SingleThreadEventLoop {
24
25 private final ThreadPerChannelEventLoopGroup parent;
26 private Channel ch;
27
28 public ThreadPerChannelEventLoop(ThreadPerChannelEventLoopGroup parent) {
29 super(parent, parent.threadFactory, true);
30 this.parent = parent;
31 }
32
33 @Override
34 public ChannelFuture register(Channel channel, ChannelPromise promise) {
35 return super.register(channel, promise).addListener(new ChannelFutureListener() {
36 @Override
37 public void operationComplete(ChannelFuture future) throws Exception {
38 if (future.isSuccess()) {
39 ch = future.channel();
40 } else {
41 deregister();
42 }
43 }
44 });
45 }
46
47 @Override
48 protected void run() {
49 for (;;) {
50 Runnable task = takeTask();
51 if (task != null) {
52 task.run();
53 updateLastExecutionTime();
54 }
55
56 Channel ch = this.ch;
57 if (isShuttingDown()) {
58 if (ch != null) {
59 ch.unsafe().close(ch.unsafe().voidPromise());
60 }
61 if (confirmShutdown()) {
62 break;
63 }
64 } else {
65 if (ch != null) {
66
67 if (!ch.isRegistered()) {
68 runAllTasks();
69 deregister();
70 }
71 }
72 }
73 }
74 }
75
76 protected void deregister() {
77 ch = null;
78 parent.activeChildren.remove(this);
79 parent.idleChildren.add(this);
80 }
81 }