Package

com.twitter.finagle.netty4

param

Permalink

package param

Visibility
  1. Public
  2. All

Type Members

  1. case class WorkerPool(eventLoopGroup: EventLoopGroup) extends Product with Serializable

    Permalink

    A class eligible for configuring the io.netty.channel.EventLoopGroup used to execute I/O work for finagle clients and servers.

    A class eligible for configuring the io.netty.channel.EventLoopGroup used to execute I/O work for finagle clients and servers. The default is global and shared among clients and servers such that we can inline work on the I/O threads. Modifying the default has performance and instrumentation implications and should only be done so with care. If there is particular work you would like to schedule off the I/O threads, consider scheduling that work on a separate thread pool more granularly (e.g. com.twitter.util.FuturePool is a good tool for this).

Value Members

  1. object WorkerPool extends Serializable

    Permalink

Ungrouped