com.twitter.finagle.builder

Server

Related Doc: package builder

trait Server extends ListeningServer

A listening server. This is for compatibility with older code that is using builder.Server. New code should use the ListeningServer trait.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Server
  2. ListeningServer
  3. Group
  4. Awaitable
  5. Closable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def boundAddress: SocketAddress

    The address to which this server is bound.

    The address to which this server is bound.

    Definition Classes
    ListeningServer
  2. abstract def closeServer(deadline: Time): Future[Unit]

    Attributes
    protected
    Definition Classes
    ListeningServer
  3. abstract def isReady(implicit permit: CanAwait): Boolean

    Definition Classes
    Awaitable
  4. abstract def ready(timeout: Duration)(implicit permit: CanAwait): Server.this.type

    Definition Classes
    Awaitable
    Annotations
    @throws( ... ) @throws( ... )
  5. abstract def result(timeout: Duration)(implicit permit: CanAwait): Unit

    Definition Classes
    Awaitable
    Annotations
    @throws( classOf[java.lang.Exception] )

Concrete Value Members

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

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

    Definition Classes
    AnyRef → Any
  3. def +(other: Group[SocketAddress]): Group[SocketAddress]

    Definition Classes
    Group
  4. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  5. def announce(addr: String): Future[Announcement]

    Announce the given address and return a future to the announcement

    Announce the given address and return a future to the announcement

    Definition Classes
    ListeningServer
  6. final def apply(): Set[SocketAddress]

    Definition Classes
    Group
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def close(deadline: Time): Future[Unit]

    Definition Classes
    ListeningServer → Closable
  10. def close(after: Duration): Future[Unit]

    Definition Classes
    Closable
  11. final def close(): Future[Unit]

    Definition Classes
    Closable
  12. def collect[U](f: PartialFunction[SocketAddress, U]): Group[U]

    Create a new group by collecting each element of this group with f.

    Create a new group by collecting each element of this group with f. f is guaranteed to be invoked exactly once for each element of the group, even for dynamic groups.

    Definition Classes
    Group
  13. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Definition Classes
    Any
  19. def map[U](f: (SocketAddress) ⇒ U): Group[U]

    Create a new group by mapping each element of this group with f.

    Create a new group by mapping each element of this group with f. f is guaranteed to be invoked exactly once for each element of the groups, even for dynamic groups.

    Definition Classes
    Group
  20. final def members: Set[SocketAddress]

    The current members of this group.

    The current members of this group. If the group has not changed, the same object is returned. This allows a simple object identity check to be performed to see if the Group has been updated.

    Definition Classes
    Group
  21. def named(n: String): Group[SocketAddress]

    Name the group n.

    Name the group n.

    returns

    this mixed in with LabelledGroup, named n

    Definition Classes
    Group
  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  25. final lazy val ref: AtomicReference[Set[SocketAddress]]

    Attributes
    protected[com.twitter.finagle]
    Definition Classes
    Group
  26. lazy val set: Var[Set[SocketAddress]]

    Attributes
    protected[com.twitter.finagle]
    Definition Classes
    ListeningServerGroup
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. final def localAddress: SocketAddress

    When a server is bound to an ephemeral port, gets back the address with concrete listening port picked.

    When a server is bound to an ephemeral port, gets back the address with concrete listening port picked.

    Annotations
    @deprecated
    Deprecated

    (Since version 2014-12-19) Use boundAddress

Inherited from ListeningServer

Inherited from Group[SocketAddress]

Inherited from Awaitable[Unit]

Inherited from Closable

Inherited from AnyRef

Inherited from Any

Ungrouped