|
|
fun <A : Any, R, G : TxProvider<R, G>> RouteBuilder<R, G>.delete(path: String = "", f: (ApplicationCall) -> Nee<WebContext<R, G>, Any, A>): RoutingDef<R, G> |
|
|
fun <A : Any, R, G : TxProvider<R, G>> RouteBuilder<R, G>.get(path: String = "", f: (ApplicationCall) -> Nee<WebContext<R, G>, Any, A>): RoutingDef<R, G> |
|
|
fun <A : Any, R, G : TxProvider<R, G>> RouteBuilder<R, G>.head(path: String = "", f: (ApplicationCall) -> Nee<WebContext<R, G>, Any, A>): RoutingDef<R, G> |
|
|
fun <R, G : TxProvider<R, G>> RouteBuilder<R, G>.nested(path: String = "", f: (Routing<R, G>) -> RoutingDef<R, G>): RoutingDef<R, G> |
|
|
fun <A : Any, R, G : TxProvider<R, G>> RouteBuilder<R, G>.options(path: String = "", f: (ApplicationCall) -> Nee<WebContext<R, G>, Any, A>): RoutingDef<R, G> |
|
|
fun <A : Any, R, G : TxProvider<R, G>> RouteBuilder<R, G>.patch(path: String = "", f: (ApplicationCall) -> Nee<WebContext<R, G>, Any, A>): RoutingDef<R, G> |
|
|
fun <A : Any, R, G : TxProvider<R, G>> RouteBuilder<R, G>.post(path: String = "", f: (ApplicationCall) -> Nee<WebContext<R, G>, Any, A>): RoutingDef<R, G> |
|
|
fun <A : Any, R, G : TxProvider<R, G>, B> RouteBuilder<R, G>.postWithBody(path: String = "", f: (ApplicationCall) -> Nee<WebContext<R, G>, Any, A>): RoutingDef<R, G> |
|
|
fun <A : Any, R, G : TxProvider<R, G>> RouteBuilder<R, G>.put(path: String = "", f: (ApplicationCall) -> Nee<WebContext<R, G>, Any, A>): RoutingDef<R, G> |
|
|
fun <R, G : TxProvider<R, G>> startNettyServer(port: Int, mapper: ObjectMapper, webContextProvider: WebContextProvider<R, G>, aRouting: (Routing<R, G>) -> RoutingDef<R, G>): <ERROR CLASS><Unit> |