org.apache.camel.component.netty
Class ClientPipelineFactory

java.lang.Object
  extended by org.apache.camel.component.netty.ClientPipelineFactory
All Implemented Interfaces:
org.jboss.netty.channel.ChannelPipelineFactory
Direct Known Subclasses:
DefaultClientPipelineFactory

public abstract class ClientPipelineFactory
extends Object
implements org.jboss.netty.channel.ChannelPipelineFactory

Factory to create ChannelPipeline for clients, eg NettyProducer.

Implementators must support creating a new instance of this factory which is associated to the given NettyProducer using the createPipelineFactory(NettyProducer) method.

See Also:
ChannelPipelineFactory

Constructor Summary
ClientPipelineFactory()
           
 
Method Summary
abstract  ClientPipelineFactory createPipelineFactory(NettyProducer producer)
          Creates a new ClientPipelineFactory using the given NettyProducer
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.jboss.netty.channel.ChannelPipelineFactory
getPipeline
 

Constructor Detail

ClientPipelineFactory

public ClientPipelineFactory()
Method Detail

createPipelineFactory

public abstract ClientPipelineFactory createPipelineFactory(NettyProducer producer)
Creates a new ClientPipelineFactory using the given NettyProducer

Parameters:
producer - the associated producers
Returns:
the ClientPipelineFactory associated to ghe given producer.


Apache Camel