Packages

object Dtab extends DtabCompanionBase with Serializable

Linear Supertypes
Serializable, DtabCompanionBase, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Dtab
  2. Serializable
  3. DtabCompanionBase
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. 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.

    Definition Classes
    DtabCompanionBase
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. val empty: Dtab

    An empty delegation table.

    An empty delegation table.

    Definition Classes
    DtabCompanionBase
  8. val emptyDtab: Dtab

    An empty delegation table.

    An empty delegation table.

    Use this one if you're coming from Java.

    Definition Classes
    DtabCompanionBase
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. implicit val equiv: Equiv[Dtab]
    Definition Classes
    DtabCompanionBase
  12. lazy val fail: Dtab

    A failing delegation table.

    A failing delegation table.

    Definition Classes
    DtabCompanionBase
  13. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. implicit val flaggable: Flaggable[Dtab]

    implicit conversion from com.twitter.finagle.Dtab to com.twitter.app.Flaggable, allowing Dtabs to be easily used as com.twitter.app.Flags

    implicit conversion from com.twitter.finagle.Dtab to com.twitter.app.Flaggable, allowing Dtabs to be easily used as com.twitter.app.Flags

    Definition Classes
    DtabCompanionBase
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. 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 via a com.twitter.finagle.naming.NameInterpreter.

    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.

    Definition Classes
    DtabCompanionBase
  19. def local_=(dtab: Dtab): Unit
    Definition Classes
    DtabCompanionBase
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def newBuilder: DtabBuilder

    Scala collection plumbing required to build new dtabs

    Scala collection plumbing required to build new dtabs

    Definition Classes
    DtabCompanionBase
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. 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

    Definition Classes
    DtabCompanionBase
  25. def setBase(dtab: Dtab): Unit

    Java API for base_=

    Java API for base_=

    Definition Classes
    DtabCompanionBase
  26. def setLocal(dtab: Dtab): Unit

    Java API for local_=

    Java API for local_=

    Definition Classes
    DtabCompanionBase
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. def unwind[T](f: => T): T
    Definition Classes
    DtabCompanionBase
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from DtabCompanionBase

Inherited from AnyRef

Inherited from Any

Ungrouped