package service
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
class
NotFoundService[REQUEST <: Request] extends Service[REQUEST, Response]
NotFoundService just returns 404 Not Found.
-
class
NullService[REQUEST <: Request] extends Service[REQUEST, Response]
* A null Service.
* A null Service. Useful for testing.
-
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
-
object
HttpResponseClassifier
ResponseClassifiers for use with
finagle-httprequest/responses which are Request/Response typed. - object NotFoundService extends NotFoundService[Request]
- object NullService extends NullService[Request]
- object RoutingService