Object/Class

com.twitter.finagle

Dtab

Related Docs: class Dtab | package finagle

Permalink

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
Visibility
  1. Public
  2. All

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. var base: Dtab

    Permalink

    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]

    Permalink
  7. def clone(): AnyRef

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

    Permalink

    An empty delegation table.

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

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

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

    Permalink
  12. val fail: Dtab

    Permalink

    A failing delegation table.

  13. def finalize(): Unit

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

    Permalink

    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[_]

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

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

    Permalink
    Definition Classes
    Any
  18. def local: Dtab

    Permalink

    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

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

    Permalink
    Definition Classes
    AnyRef
  21. def newBuilder: DtabBuilder

    Permalink

    Scala collection plumbing required to build new dtabs

  22. final def notify(): Unit

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

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

    Permalink

    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

    Permalink

    Java API for base_=

  26. def setLocal(dtab: Dtab): Unit

    Permalink

    Java API for local_=

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

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

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

    Permalink
  30. final def wait(): Unit

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

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

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

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped