com.twitter.finagle

Dtab

object Dtab extends Serializable

Object Dtab manages 'base' and 'local' Dtabs.

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Dtab
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

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. final def ==(arg0: AnyRef): Boolean

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

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

    Definition Classes
    Any
  7. var base: Dtab

    The base, or "system", or "global", delegation table applies to every request in this process.

    The base, or "system", or "global", delegation table applies to every request in this process. It is generally set at process startup, and not changed thereafter.

  8. implicit val canBuildFrom: CanBuildFrom[TraversableOnce[Dentry], Dentry, Dtab]

  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. val empty: Dtab

    An empty delegation table.

  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  13. implicit val equiv: Equiv[Dtab]

  14. val fail: Dtab

    A failing delegation table.

  15. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

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

    Definition Classes
    Any
  19. def local: Dtab

    The local, or "per-request", delegation table applies to the current Local scope which is usually defined on a per-request basis.

    The local, or "per-request", delegation table applies to the current Local scope which is usually defined on a per-request basis. Finagle uses the Dtab Dtab.base ++ Dtab.local to bind Paths.

    Local's scope is dictated by Local.

    The local dtab is serialized into outbound requests when supported protocols are used. (Http, Thrift via TTwitter, Mux, and ThriftMux are among these.) The upshot is that local is defined for the entire request graph, so that a local dtab defined here will apply to downstream services as well.

  20. def local_=(dtab: Dtab): Unit

  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. def newBuilder: DtabBuilder

    Scala collection plumbing required to build new dtabs

  23. final def notify(): Unit

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

    Definition Classes
    AnyRef
  25. def read(s: String): Dtab

    Parse a Dtab from string s with concrete syntax

    Parse a Dtab from string s with concrete syntax

    dtab       ::= dentry ';' dtab | dentry

    where the production dentry is from the grammar documented in Dentry.read

  26. def setBase(dtab: Dtab): Unit

    Java API for base_=

  27. def setLocal(dtab: Dtab): Unit

    Java API for local_=

  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  29. def toString(): String

    Definition Classes
    AnyRef → Any
  30. def unwind[T](f: ⇒ T): T

  31. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped