abstract class LoadBalancerFactory extends AnyRef
A thin interface around a Balancer's constructor that allows Finagle to pass in context from the stack to the balancers at construction time.
- See also
Balancers for a collection of available balancers.
The user guide for more details.
- Alphabetic
- By Inheritance
- LoadBalancerFactory
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new LoadBalancerFactory()
Abstract Value Members
- abstract def newBalancer[Req, Rep](endpoints: Activity[IndexedSeq[EndpointFactory[Req, Rep]]], emptyException: NoBrokersAvailableException, params: Params): ServiceFactory[Req, Rep]
Returns a new balancer which is represented by a com.twitter.finagle.ServiceFactory.
Returns a new balancer which is represented by a com.twitter.finagle.ServiceFactory.
- endpoints
The load balancer's collection is usually populated concurrently. So the interface to build a balancer is wrapped in an com.twitter.util.Activity which allows us to observe this process for changes.
- emptyException
The exception returned when a balancer's collection is empty.
- params
A collection of parameters usually passed in from the client stack.
- Note
endpoints
are ordered by the LoadBalancerFactory.AddressOrdering param.
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def supportsEagerConnections: Boolean
- Attributes
- protected[twitter]
- def supportsWeighted: Boolean
- Attributes
- protected[twitter]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()