com.twitter.finagle

Dtab

Related Docs: class Dtab | package finagle

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: 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.

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

  7. def clone(): AnyRef

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

    An empty delegation table.

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

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

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

  12. val fail: Dtab

    A failing delegation table.

  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

  15. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  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.

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

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

    Definition Classes
    AnyRef
  21. def newBuilder: DtabBuilder

    Scala collection plumbing required to build new dtabs

  22. final def notify(): Unit

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

    Definition Classes
    AnyRef
  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

  25. def setBase(dtab: Dtab): Unit

    Java API for base_=

  26. def setLocal(dtab: Dtab): Unit

    Java API for local_=

  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

  30. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped