Uses of Class
com.continuuity.http.NettyHttpService.Builder

Uses of NettyHttpService.Builder in com.continuuity.http
 

Methods in com.continuuity.http that return NettyHttpService.Builder
 NettyHttpService.Builder NettyHttpService.Builder.addHttpHandlers(Iterable<? extends HttpHandler> handlers)
          Add HttpHandlers that service the request.
static NettyHttpService.Builder NettyHttpService.builder()
           
 NettyHttpService.Builder NettyHttpService.Builder.enableSSL(File keyStore, String keyStorePassword, String certificatePassword)
          Enable SSL by using the provided SSL information
 NettyHttpService.Builder NettyHttpService.Builder.modifyChannelPipeline(com.google.common.base.Function<org.jboss.netty.channel.ChannelPipeline,org.jboss.netty.channel.ChannelPipeline> function)
          Modify the pipeline upon build by applying the function.
 NettyHttpService.Builder NettyHttpService.Builder.setBossThreadPoolSize(int bossThreadPoolSize)
          Set size of bossThreadPool in netty default value is 1 if it is not set.
 NettyHttpService.Builder NettyHttpService.Builder.setChannelConfig(String key, Object value)
          Sets channel configuration for the the netty service.
 NettyHttpService.Builder NettyHttpService.Builder.setConnectionBacklog(int connectionBacklog)
          Set size of backlog in netty service - size of accept queue of the TCP stack.
 NettyHttpService.Builder NettyHttpService.Builder.setExecThreadKeepAliveSeconds(long threadKeepAliveSecs)
          Set threadKeepAliveSeconds - maximum time that excess idle threads will wait for new tasks before terminating.
 NettyHttpService.Builder NettyHttpService.Builder.setExecThreadPoolSize(int execThreadPoolSize)
          Set size of executorThreadPool in netty default value is 60 if it is not set.
 NettyHttpService.Builder NettyHttpService.Builder.setHandlerHooks(Iterable<? extends HandlerHook> handlerHooks)
          Set HandlerHooks to be executed pre and post handler calls.
 NettyHttpService.Builder NettyHttpService.Builder.setHost(String host)
          Set the bindAddress for the service.
 NettyHttpService.Builder NettyHttpService.Builder.setHttpChunkLimit(int value)
           
 NettyHttpService.Builder NettyHttpService.Builder.setPort(int port)
          Set the port on which the service should listen to.
 NettyHttpService.Builder NettyHttpService.Builder.setRejectedExecutionHandler(RejectedExecutionHandler rejectedExecutionHandler)
          Set RejectedExecutionHandler - rejection policy for executor.
 NettyHttpService.Builder NettyHttpService.Builder.setUrlRewriter(URLRewriter urlRewriter)
          Set URLRewriter to re-write URL of an incoming request before any handlers or their hooks are called.
 NettyHttpService.Builder NettyHttpService.Builder.setWorkerThreadPoolSize(int workerThreadPoolSize)
          Set size of workerThreadPool in netty default value is 10 if it is not set.
 



Copyright 2013 Continuuity, Inc. Licensed under the Apache License, Version 2.0