org.mashupbots.socko

routes

package routes

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

Visibility
  1. Public
  2. All

Type Members

  1. class HostRegex extends AnyRef

    Matches the host of EndPoints in SockoEvents using regular expression.

  2. class Method extends AnyRef

    Matches the "method" of HTTP EndPoint

  3. class PathRegex extends AnyRef

    Matches the path of EndPoints in SockoEvents using regular expressions.

  4. class QueryStringField extends AnyRef

    Matches the query string of EndPoints in SockoEvents using field names.

  5. class QueryStringRegex extends AnyRef

    Matches the query string of EndPoints in SockoEvents using regular expressions

Value Members

  1. object & extends AnyRef

    Concatenates 2 extractors in a case statement

  2. object CONNECT extends Method

    Matches EndPoints of SockoEvents where the method is set to CONNECT.

  3. object DELETE extends Method

    Matches EndPoints of SockoEvents where the method is set to DELETE.

  4. object GET extends Method

    Matches EndPoints of SockoEvents where the method is set to GET.

  5. object HEAD extends Method

    Matches EndPoints of SockoEvents where the method is set to HEAD.

  6. object Host extends AnyRef

    Matches the host of EndPoints in SockoEvents.

  7. object HostSegments extends AnyRef

    Matches the host of EndPoints in SockoEvents using segment patterns.

  8. object HttpChunk extends AnyRef

    Matches a Socko HttpChunkEvent event.

  9. object HttpRequest extends AnyRef

    Matches a Socko HttpRequestEvent.

  10. object OPTIONS extends Method

    Matches EndPoints of SockoEvents where the method is set to OPTIONS.

  11. object POST extends Method

    Matches EndPoints of SockoEvents where the method is set to POST.

  12. object PUT extends Method

    Matches EndPoints of SockoEvents where the method is set to PUT.

  13. object Path extends AnyRef

    Matches the case-sensitive path of EndPoints in SockoEvents.

  14. object PathSegments extends AnyRef

    Matches the path of EndPoints in SockoEvents using segment patterns.

  15. object QueryString extends AnyRef

    Matches the query string of EndPoints in SockoEvents.

  16. object Routes extends AnyRef

    Routes define the rules for dispatching events to its intended Akka handlers.

  17. object TRACE extends Method

    Matches EndPoints of SockoEvents where the method is set to TRACE.

  18. object WebSocketFrame extends AnyRef

    Matches a Socko WebSocketFrameEvent event.

  19. object WebSocketHandshake extends AnyRef

    Matches a Socko WebSocketHandshakeEvent event.