Packages

object Address

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Address
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Failed(cause: Throwable) extends Address with Product with Serializable

    An address that fails with the given cause.

  2. case class Inet(addr: InetSocketAddress, metadata: Metadata) extends Address with Product with Serializable

    An address represented by an Internet socket address.

  3. case class ServiceFactory[Req, Rep](factory: finagle.ServiceFactory[Req, Rep], metadata: Metadata) extends Address with Product with Serializable

    An endpoint address represented by a com.twitter.finagle.ServiceFactory that implements the endpoint.

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. def apply[Req, Rep](factory: finagle.ServiceFactory[Req, Rep]): Address

    Create a new Address with the given com.twitter.finagle.ServiceFactory.

  5. def apply(port: Int): Address

    Create a new loopback Address with the given port.

  6. def apply(host: String, port: Int): Address

    Create a new Address with given host and port.

  7. def apply(addr: InetSocketAddress): Address

    Create a new Address with given java.net.InetSocketAddress.

  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def hashOrdering(seed: Int): Ordering[Address]

    An ordering of Addresses based on a deterministic hash of their IP and port.

    An ordering of Addresses based on a deterministic hash of their IP and port.

    Note

    In order to keep this hash ordering deterministic, it's important that we avoid hash collisions for non-equal inputs. We do this by using a murmur hash under the hood which is known to not have collisions for 32-bit inputs. However, if the underlying addresses were to be 128-bit (IPv6), we would lose that property.

  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
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped