com.twitter.finagle

NullServer

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
CloseAwaitably, ListeningServer, Group[SocketAddress], Awaitable[Unit], Closable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. NullServer
  2. CloseAwaitably
  3. ListeningServer
  4. Group
  5. Awaitable
  6. Closable
  7. AnyRef
  8. Any
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    Group
  5. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  6. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  7. def announce(target: String): Unit

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

    Synonymous to members

    Synonymous to members

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

    Definition Classes
    Any
  10. val boundAddress: InetSocketAddress

    The address to which this server is bound.

    The address to which this server is bound.

    Definition Classes
    NullServerListeningServer
  11. def clone(): AnyRef

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

    Definition Classes
    ListeningServer → Closable
  13. final def close(): Future[Unit]

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

    Attributes
    protected
    Definition Classes
    CloseAwaitably
  15. def closeServer(deadline: Time): Future[Unit]

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

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

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

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

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

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

    Definition Classes
    Any
  23. 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
  24. lazy val members: Set[SocketAddress]

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

    Name the group n.

    Name the group n.

    returns

    this mixed in with NamedGroup, named n

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

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

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

    Definition Classes
    AnyRef
  29. def ready(timeout: Duration)(implicit permit: CanAwait): com.twitter.finagle.NullServer.type

    Definition Classes
    CloseAwaitably → Awaitable
  30. def result(timeout: Duration)(implicit permit: CanAwait): Unit

    Definition Classes
    CloseAwaitably → Awaitable
  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  32. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from CloseAwaitably

Inherited from ListeningServer

Inherited from Group[SocketAddress]

Inherited from Awaitable[Unit]

Inherited from Closable

Inherited from AnyRef

Inherited from Any