Object/Trait

com.twitter.finagle

Address

Related Docs: trait Address | package finagle

Permalink

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

    Permalink

    An address that fails with the given cause.

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

    Permalink

    An address represented by an Internet socket address.

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. def apply(port: Int): Address

    Permalink

    Create a new loopback Address with the given port.

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

    Permalink

    Create a new Address with given host and port.

  6. def apply(addr: InetSocketAddress): Address

    Permalink

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

  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hashOrdering(seed: Int): Ordering[Address]

    Permalink

    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.

  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  19. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped