com.groupon.sparklint.server

AdhocServer

trait AdhocServer extends RoutingMap with Logging

This mix-in trait will start up a server on the port specified

Usage: 1. Mount endpoint to RoutingMap.routingMap example: https://github.com/http4s/http4s/blob/master/examples/src/main/scala/com/example/http4s/ExampleService.scala 2. call startServer(port)

Since

4/25/16.

Linear Supertypes
Logging, RoutingMap, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. AdhocServer
  2. Logging
  3. RoutingMap
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
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. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  6. val DEFAULT_PORT: Int

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def bindServer(port: Int): Try[Server]

  9. def clone(): AnyRef

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

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

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

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

    Definition Classes
    AnyRef → Any
  14. def getServerAddress: Option[String]

  15. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  16. def htmlResponse(textResponse: Task[Response]): Task[Response]

  17. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  18. def jsonResponse(textResponse: Task[Response]): Task[Response]

  19. def log: Logger

    Attributes
    protected
    Definition Classes
    Logging
  20. def logDebug(message: String): Unit

    Definition Classes
    Logging
  21. def logError(message: String, ex: Throwable): Unit

    Definition Classes
    Logging
  22. def logError(message: String): Unit

    Definition Classes
    Logging
  23. def logInfo(message: String): Unit

    Definition Classes
    Logging
  24. def logTrace(message: String): Unit

    Definition Classes
    Logging
  25. def logWarn(message: String): Unit

    Definition Classes
    Logging
  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 router: HttpService

    Definition Classes
    RoutingMap
  30. lazy val routingMap: Map[String, HttpService]

    Definition Classes
    RoutingMap
  31. var server: Option[Server]

  32. def startServer(port: Option[Int] = None): Unit

    start the server with the routingMap and port

    start the server with the routingMap and port

    port

    port to use

    Annotations
    @throws( ... )
    Exceptions thrown
    IllegalArgumentException

    if the port is smaller than 0 or greater than 65535

  33. def stopServer(): Unit

  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  35. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Logging

Inherited from RoutingMap

Inherited from AnyRef

Inherited from Any

Ungrouped