Class

com.twitter.finagle

LabelledGroup

Related Doc: package finagle

Permalink

case class LabelledGroup[T](underlying: Group[T], name: String) extends Group[T] with Product with Serializable

A mixin trait to assign a name to the group. This is used to assign labels to groups that ascribe meaning to them.

Annotations
@deprecated
Deprecated

(Since version 6.7.x) Use com.twitter.finagle.Name to represent clusters instead

Linear Supertypes
Serializable, Serializable, Product, Equals, Group[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LabelledGroup
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Group
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LabelledGroup(underlying: Group[T], name: String)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: Group[T]): Group[T]

    Permalink
    Definition Classes
    Group
  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. final def apply(): Set[T]

    Permalink
    Definition Classes
    Group
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def collect[U](f: PartialFunction[T, U]): Group[U]

    Permalink

    Create a new group by collecting each element of this group with f.

    Create a new group by collecting each element of this group with f. f is guaranteed to be invoked exactly once for each element of the group, even for dynamic groups.

    Definition Classes
    Group
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. def map[U](f: (T) ⇒ U): Group[U]

    Permalink

    Create a new group by mapping each element of this group with f.

    Create a new group by mapping each element of this group with f. f is guaranteed to be invoked exactly once for each element of the groups, even for dynamic groups.

    Definition Classes
    Group
  14. final def members: Set[T]

    Permalink

    The current members of this group.

    The current members of this group. If the group has not changed, the same object is returned. This allows a simple object identity check to be performed to see if the Group has been updated.

    Definition Classes
    Group
  15. val name: String

    Permalink
  16. def named(n: String): Group[T]

    Permalink

    Name the group n.

    Name the group n.

    returns

    this mixed in with LabelledGroup, named n

    Definition Classes
    Group
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final lazy val ref: AtomicReference[Set[T]]

    Permalink
    Attributes
    protected[com.twitter.finagle]
    Definition Classes
    Group
  21. lazy val set: Var[Set[T]]

    Permalink
    Attributes
    protected[com.twitter.finagle]
    Definition Classes
    LabelledGroupGroup
  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  23. def toString(): String

    Permalink
    Definition Classes
    Group → AnyRef → Any
  24. val underlying: Group[T]

    Permalink
  25. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Group[T]

Inherited from AnyRef

Inherited from Any

Ungrouped