1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.jboss.netty.example.http.websocketx.html5;
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 import org.jboss.netty.handler.codec.http.websocketx.WebSocketServerProtocolHandler;
26
27 public class WebSocketServerPipelineFactory implements ChannelPipelineFactory {
28 public ChannelPipeline getPipeline() throws Exception {
29
30 ChannelPipeline pipeline = pipeline();
31 pipeline.addLast("decoder", new HttpRequestDecoder());
32 pipeline.addLast("aggregator", new HttpChunkAggregator(65536));
33 pipeline.addLast("encoder", new HttpResponseEncoder());
34 pipeline.addLast("handler", new WebSocketServerProtocolHandler("/websocket"));
35 pipeline.addLast("testFramehandler", new CustomTextFrameHandler());
36 return pipeline;
37 }
38 }