Packages

package service

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class NotFoundService[REQUEST <: Request] extends Service[REQUEST, Response]

    NotFoundService just returns 404 Not Found.

  2. class NullService[REQUEST <: Request] extends Service[REQUEST, Response]

    * A null Service.

    * A null Service. Useful for testing.

  3. class RoutingService[REQUEST <: Request] extends Service[REQUEST, Response]

    RoutingService for composing Services.

    RoutingService for composing Services. Responds with 404 Not Found if no matching service.

    RoutingService.byPath { case "/search.json" => mySearchService .... }

Value Members

  1. object HttpResponseClassifier

    ResponseClassifiers for use with finagle-http request/responses which are Request/Response typed.

  2. object NotFoundService extends NotFoundService[Request]
  3. object NullService extends NullService[Request]
  4. object RoutingService

Ungrouped