com.twitter.finagle.Stack

Leaf

case class Leaf[T](headRole: Role, t: T) extends Stack[T] with Product with Serializable

A static stack element; necessarily the last.

Linear Supertypes
Serializable, Serializable, Product, Equals, Stack[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Leaf
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Stack
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Leaf(headRole: Role, t: T)

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def ++(right: Stack[T]): Stack[T]

    Produce a new stack representing the concatenation of this with right.

    Produce a new stack representing the concatenation of this with right. Note that this replaces the terminating element of this.

    Definition Classes
    Stack
  5. def +:(stk: Stackable[T]): Stack[T]

    A copy of this Stack with stk prepended.

    A copy of this Stack with stk prepended.

    Definition Classes
    Stack
  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. def foreach(fn: (Stack[T]) ⇒ Unit): Unit

    Traverse the stack, invoking fn on each element.

    Traverse the stack, invoking fn on each element.

    Definition Classes
    Stack
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. val headRole: Role

    The Role that the head element of this Stack can serve.

    The Role that the head element of this Stack can serve.

    Definition Classes
    Leaf → Stack
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. def make(params: Params): T

    Materialize the current stack with the given parameters, producing a T-typed value representing the current configuration.

    Materialize the current stack with the given parameters, producing a T-typed value representing the current configuration.

    Definition Classes
    Leaf → Stack
  17. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  20. def remove(target: Role): Stack[T]

    Remove all nodes in the stack that match the target role.

    Remove all nodes in the stack that match the target role. Leaf nodes are not removable.

    Definition Classes
    Stack
  21. def replace[U](target: Role, replacement: U)(implicit csf: CanStackFrom[U, T]): Stack[T]

    Replace any stack elements matching the argument role with a given com.twitter.finagle.Stackable.

    Replace any stack elements matching the argument role with a given com.twitter.finagle.Stackable. If no elements match the role, then an unmodified stack is returned. replacement must conform to typeclass com.twitter.finagle.CanStackFrom.

    Definition Classes
    Stack
  22. def replace(target: Role, replacement: Stackable[T]): Stack[T]

    Replace any stack elements matching the argument role with a given Stackable.

    Replace any stack elements matching the argument role with a given Stackable. If no elements match the role, then an unmodified stack is returned.

    Definition Classes
    Stack
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  24. val t: T

  25. def tails: Iterator[Stack[T]]

    Enumerate each well-formed stack contained within this stack.

    Enumerate each well-formed stack contained within this stack.

    Definition Classes
    Stack
  26. def toString(): String

    Definition Classes
    Stack → AnyRef → Any
  27. def transform(fn: (Stack[T]) ⇒ Stack[T]): Stack[T]

    Transform one stack to another by applying fn on each element; the map traverses on the element produced by fn, not the original stack.

    Transform one stack to another by applying fn on each element; the map traverses on the element produced by fn, not the original stack.

    Definition Classes
    Stack
  28. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Stack[T]

Inherited from AnyRef

Inherited from Any

Ungrouped