org.apache.camel.component.netty
Class NettyClientBossPoolBuilder

java.lang.Object
  extended by org.apache.camel.component.netty.NettyClientBossPoolBuilder

public final class NettyClientBossPoolBuilder
extends Object

A builder to create Netty BossPool which can be used for sharing boos pools with multiple Netty NettyServerBootstrapFactory server bootstrap configurations.


Constructor Summary
NettyClientBossPoolBuilder()
           
 
Method Summary
 void setBossCount(int bossCount)
           
 void setName(String name)
           
 void setPattern(String pattern)
           
 void setTimer(org.jboss.netty.util.Timer timer)
           
 NettyClientBossPoolBuilder withBossCount(int bossCount)
           
 NettyClientBossPoolBuilder withName(String name)
           
 NettyClientBossPoolBuilder withPattern(String pattern)
           
 NettyClientBossPoolBuilder withTimer(org.jboss.netty.util.Timer timer)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NettyClientBossPoolBuilder

public NettyClientBossPoolBuilder()
Method Detail

setName

public void setName(String name)

setPattern

public void setPattern(String pattern)

setBossCount

public void setBossCount(int bossCount)

setTimer

public void setTimer(org.jboss.netty.util.Timer timer)

withName

public NettyClientBossPoolBuilder withName(String name)

withPattern

public NettyClientBossPoolBuilder withPattern(String pattern)

withBossCount

public NettyClientBossPoolBuilder withBossCount(int bossCount)

withTimer

public NettyClientBossPoolBuilder withTimer(org.jboss.netty.util.Timer timer)


Apache Camel