Object

com.twitter.finagle

NullServer

Related Doc: package finagle

Permalink

object NullServer extends ListeningServer with CloseAwaitably

An empty ListeningServer that can be used as a placeholder. For example:

@volatile var server = NullServer
def main() { server = Http.serve(...) }
def exit() { server.close() }
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NullServer
  2. CloseAwaitably
  3. CloseAwaitably0
  4. ListeningServer
  5. Group
  6. Awaitable
  7. Closable
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

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

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

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

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

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

    Permalink

    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]

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

    Permalink
    Definition Classes
    Any
  8. val boundAddress: InetSocketAddress

    Permalink

    The address to which this server is bound.

    The address to which this server is bound.

    Definition Classes
    NullServerListeningServer
  9. def clone(): AnyRef

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

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

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

    Permalink
    Definition Classes
    Closable
  13. def closeAwaitably(f: ⇒ Future[Unit]): Future[Unit]

    Permalink
    Attributes
    protected
    Definition Classes
    CloseAwaitably0
  14. def closeServer(deadline: Time): Future[Unit]

    Permalink
    Definition Classes
    NullServerListeningServer
  15. def collect[U](f: PartialFunction[SocketAddress, U]): Group[U]

    Permalink

    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
  16. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  22. def isReady(implicit permit: CanAwait): Boolean

    Permalink
    Definition Classes
    CloseAwaitably0 → Awaitable
  23. def map[U](f: (SocketAddress) ⇒ U): Group[U]

    Permalink

    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
  24. final def members: Set[SocketAddress]

    Permalink

    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
  25. def named(n: String): Group[SocketAddress]

    Permalink

    Name the group n.

    Name the group n.

    returns

    this mixed in with LabelledGroup, named n

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

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

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

    Permalink
    Definition Classes
    AnyRef
  29. def ready(timeout: Duration)(implicit permit: CanAwait): NullServer.this.type

    Permalink
    Definition Classes
    CloseAwaitably0 → Awaitable
  30. final lazy val ref: AtomicReference[Set[SocketAddress]]

    Permalink
    Attributes
    protected[com.twitter.finagle]
    Definition Classes
    Group
  31. def result(timeout: Duration)(implicit permit: CanAwait): Unit

    Permalink
    Definition Classes
    CloseAwaitably0 → Awaitable
  32. lazy val set: Var[Set[SocketAddress]]

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

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

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

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

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

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

Inherited from CloseAwaitably

Inherited from CloseAwaitably0[Unit]

Inherited from ListeningServer

Inherited from Group[SocketAddress]

Inherited from Awaitable[Unit]

Inherited from Closable

Inherited from AnyRef

Inherited from Any

Ungrouped