(Handler handler)
| 32 | private final Thread thread; |
| 33 | |
| 34 | public EventLoop(Handler handler) throws IOException { |
| 35 | this(Options.builder().build(), handler); |
| 36 | } |
| 37 | |
| 38 | public EventLoop(Options options, Handler handler) throws IOException { |
| 39 | this(options, NoopLogger.instance(), handler); |