object Address
- Alphabetic
- By Inheritance
- Address
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- case class Failed(cause: Throwable) extends Address with Product with Serializable
An address that fails with the given
cause
. - case class Inet(addr: InetSocketAddress, metadata: Metadata) extends Address with Product with Serializable
An address represented by an Internet socket address.
- 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
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply[Req, Rep](factory: finagle.ServiceFactory[Req, Rep]): Address
Create a new Address with the given com.twitter.finagle.ServiceFactory.
- def apply(port: Int): Address
Create a new loopback Address with the given
port
. - def apply(host: String, port: Int): Address
Create a new Address with given
host
andport
. - def apply(addr: InetSocketAddress): Address
Create a new Address with given java.net.InetSocketAddress.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- 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.
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object ServiceFactory extends Serializable