com.twitter.finagle.transport

Transport

Related Docs: trait Transport | package transport

object Transport

A collection of com.twitter.finagle.Stack.Param's useful for configuring a com.twitter.finagle.transport.Transport.

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

Type Members

  1. case class BufferSizes(send: Option[Int], recv: Option[Int]) extends Product with Serializable

    $param the buffer sizes of a Transport.

    $param the buffer sizes of a Transport.

    send

    An option indicating the size of the send buffer. If None, the implementation default is used.

    recv

    An option indicating the size of the receive buffer. If None, the implementation default is used.

  2. case class Liveness(readTimeout: Duration, writeTimeout: Duration, keepAlive: Option[Boolean]) extends Product with Serializable

    $param the liveness of a Transport.

    $param the liveness of a Transport. These properties dictate the lifecycle of a Transport and ensure that it remains relevant.

    readTimeout

    A maximum duration a listener is allowed to read a request.

    writeTimeout

    A maximum duration a listener is allowed to write a response.

    keepAlive

    An option indicating if the keepAlive is on or off. If None, the implementation default is used.

  3. case class TLSClientEngine(e: Option[(SocketAddress) ⇒ Engine]) extends Product with Serializable

    $param the TLS engine for a Transport.

  4. case class TLSServerEngine(e: Option[() ⇒ Engine]) extends Product with Serializable

    $param the TLS engine for a Transport.

  5. case class Verbose(b: Boolean) extends Product with Serializable

    $param the verbosity of a Transport.

    $param the verbosity of a Transport. Transport activity is written to com.twitter.finagle.param.Logger.

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. object BufferSizes extends Serializable

  5. object Liveness extends Serializable

  6. object TLSClientEngine extends Serializable

  7. object TLSServerEngine extends Serializable

  8. object Verbose extends Serializable

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clone(): AnyRef

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

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

    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

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

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

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

    Definition Classes
    Any
  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 peerCertificate: Option[Certificate]

    Retrieve the transport's SSLSession (if any) from com.twitter.finagle.context.Contexts.local

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

    Definition Classes
    AnyRef
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped