{@link ChannelPipeline} p = ...;... p.addLast("decoder", new {@link HttpRequestDecoder}()); p.addLast("aggregator", new {@link HttpObjectAggregator}(1048576)); ... p.addLast("encoder", new {@link HttpResponseEncoder}()); p.addLast("handler", new HttpRequestHandler());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|