el icon indicating copy to clipboard operation
el copied to clipboard

Minimal asynchronous network application framework

Results 9 el issues
Sort by recently updated
recently updated
newest added

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

good first issue

There's no example code for Milestone#1. We need to add example code for it

good first issue

- Rename TailContext's field as a handler - When creating context, get the event loop from the channel

help wanted
good first issue

This issue has dependency on #70

help wanted

``` 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...

question