org.mashupbots.socko

routes

package routes

Routes define the rules for dispatching requests to its intended Akka actor processors.

Visibility
  1. Public
  2. All

Type Members

  1. class HostRegex extends AnyRef

    Matches HTTP requests that have hosts matching the specified regular expression.

  2. class Method extends AnyRef

    Used to help match the HTTP method.

  3. class PathRegex extends AnyRef

    Matches HTTP requests that have paths matching the specified regular expression.

  4. class QueryStringField extends AnyRef

    Matches HTTP requests that have a query string field with the specified name.

  5. class QueryStringRegex extends AnyRef

    Matches HTTP requests that have a query string matching the specified regular expression.

Value Members

  1. object & extends AnyRef

    Concatenates 2 extractors in a case statement

  2. object CONNECT extends Method

    Matches HTTP requests with a method set to CONNECT.

  3. object DELETE extends Method

    Matches HTTP requests with a method set to DELETE.

  4. object GET extends Method

    Matches HTTP requests with a method set to GET.

  5. object HEAD extends Method

    Matches HTTP requests with a method set to HEAD.

  6. object Host extends AnyRef

    Matches HTTP requests with the same case-sensitive host.

  7. object HostSegments extends AnyRef

    Matches HTTP requests with the same host segment pattern.

  8. object HttpChunk extends AnyRef

    Used to help match an HTTP Chunk context.

  9. object HttpRequest extends AnyRef

    Used to help match an HTTP Request context.

  10. object OPTIONS extends Method

    Matches HTTP requests with a method set to OPTIONS.

  11. object POST extends Method

    Matches HTTP requests with a method set to POST.

  12. object PUT extends Method

    Matches HTTP requests with a method set to PUT.

  13. object Path extends AnyRef

    Matches HTTP requests with the same case-sensitive path.

  14. object PathSegments extends AnyRef

    Matches HTTP requests with the same path segment pattern.

  15. object QueryString extends AnyRef

    Matches HTTP requests that have identical query string

  16. object Routes extends AnyRef

    Routes define the rules for dispatching requests to its intended Akka actor processors.

  17. object TRACE extends Method

    Matches HTTP requests with a method set to TRACE.

  18. object WebSocketFrame extends AnyRef

    Used to help match an WebSocket Frame context.

  19. object WebSocketHandshake extends AnyRef

    Used to help match an WebSocket Handshake context.