1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.jboss.netty.example.http.websocket;
17
18 import static org.jboss.netty.channel.Channels.*;
19
20 import org.jboss.netty.channel.ChannelPipeline;
21 import org.jboss.netty.channel.ChannelPipelineFactory;
22 import org.jboss.netty.handler.codec.http.HttpChunkAggregator;
23 import org.jboss.netty.handler.codec.http.HttpRequestDecoder;
24 import org.jboss.netty.handler.codec.http.HttpResponseEncoder;
25
26
27
28
29
30
31
32 public class WebSocketServerPipelineFactory implements ChannelPipelineFactory {
33 public ChannelPipeline getPipeline() throws Exception {
34
35 ChannelPipeline pipeline = pipeline();
36 pipeline.addLast("decoder", new HttpRequestDecoder());
37 pipeline.addLast("aggregator", new HttpChunkAggregator(65536));
38 pipeline.addLast("encoder", new HttpResponseEncoder());
39 pipeline.addLast("handler", new WebSocketServerHandler());
40 return pipeline;
41 }
42 }