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

Abstract Value Members

  1. abstract def DEFAULT_PORT: Int

Concrete 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. final def asInstanceOf[T0]: T0

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

  8. def clone(): AnyRef

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

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

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

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

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

  14. def hashCode(): Int

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

  16. final def isInstanceOf[T0]: Boolean

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

  18. def log: Logger

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

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

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

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

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

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

    Definition Classes
    Logging
  25. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  28. def registerService(prefix: String, service: HttpService): Unit

    Definition Classes
    RoutingMap
  29. def router: HttpService

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

  31. 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

  32. def stopServer(): Unit

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

    Definition Classes
    AnyRef
  34. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Logging

Inherited from RoutingMap

Inherited from AnyRef

Inherited from Any

Ungrouped