TcpClientPipelineFactory.java
Go to the documentation of this file.
00001 /*
00002  * Copyright (C) 2011 Google Inc.
00003  * 
00004  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
00005  * use this file except in compliance with the License. You may obtain a copy of
00006  * the License at
00007  * 
00008  * http://www.apache.org/licenses/LICENSE-2.0
00009  * 
00010  * Unless required by applicable law or agreed to in writing, software
00011  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
00012  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
00013  * License for the specific language governing permissions and limitations under
00014  * the License.
00015  */
00016 
00017 package org.ros.internal.transport.tcp;
00018 
00019 import org.jboss.netty.channel.ChannelPipeline;
00020 import org.jboss.netty.channel.group.ChannelGroup;
00021 import org.jboss.netty.handler.codec.frame.LengthFieldBasedFrameDecoder;
00022 import org.jboss.netty.handler.codec.frame.LengthFieldPrepender;
00023 
00027 public class TcpClientPipelineFactory extends ConnectionTrackingChannelPipelineFactory {
00028 
00029   public static final String LENGTH_FIELD_BASED_FRAME_DECODER = "LengthFieldBasedFrameDecoder";
00030   public static final String LENGTH_FIELD_PREPENDER = "LengthFieldPrepender";
00031 
00032   public TcpClientPipelineFactory(ChannelGroup channelGroup) {
00033     super(channelGroup);
00034   }
00035 
00036   @Override
00037   public ChannelPipeline getPipeline() {
00038     ChannelPipeline pipeline = super.getPipeline();
00039     pipeline.addLast(LENGTH_FIELD_PREPENDER, new LengthFieldPrepender(4));
00040     pipeline.addLast(LENGTH_FIELD_BASED_FRAME_DECODER, new LengthFieldBasedFrameDecoder(
00041         Integer.MAX_VALUE, 0, 4, 0, 4));
00042     return pipeline;
00043   }
00044 }


rosjava_core
Author(s):
autogenerated on Wed Aug 26 2015 16:06:49