SimpleRouteMatcher

data class SimpleRouteMatcher(router: Router, handler: HttpHandler, filter: Filter = Filter.NoOp) : RouteMatcher<Response, Filter>

Constructors

Link copied to clipboard
constructor(router: Router, handler: HttpHandler, filter: Filter = Filter.NoOp)

Functions

Link copied to clipboard
open override fun match(request: Request): RoutingMatch<Response>
Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
open override fun withBasePath(prefix: String): RouteMatcher<Response, Filter>
Link copied to clipboard
open override fun withFilter(new: Filter): RouteMatcher<Response, Filter>
Link copied to clipboard
open override fun withRouter(other: Router): RouteMatcher<Response, Filter>