el
el copied to clipboard
Minimal asynchronous network application framework
We can find some missing cases on the components. We need to make up those cases. + It would be great to make our Github Action to pass
There's no example code for Milestone#1. We need to add example code for it
- Rename TailContext's field as a handler - When creating context, get the event loop from the channel
``` ChannelEventLoop eventLoop = mock(ChannelEventLoop.class); when(eventLoop.inEventLoop()).thenReturn(true); TestInboundHandler handler = new TestInboundHandler() { @Override public void channelRegistered(ChannelHandlerContext ctx) throws Exception { latch.countDown(); } }; TestChannel channel = new TestChannel(); channel.pipeline().addLast(handler); ChannelPromise...