Skip to content

Instantly share code, notes, and snippets.

@trustin
Created August 22, 2012 11:55
Show Gist options
  • Save trustin/3424833 to your computer and use it in GitHub Desktop.
Save trustin/3424833 to your computer and use it in GitHub Desktop.
// Before:
ServerBootstrap b = new ServerBootstrap();
try {
b.eventLoop(new NioEventLoop(), new NioEventLoop()); // <-- HERE
...
} finally { b.shutdown(); }
// After:
ServerBootstrap b = new ServerBootstrap();
try {
b.group(new NioEventLoopGroup(), new NioEventLoopGroup()); // <!-- HERE
...
} finally { b.shutdown(); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment