From a81c549e277d1a07e87cf8e2eecf89662deda323 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sun, 23 Dec 2018 01:32:27 +0100 Subject: API documentation for KVision 0.0.22 --- .../-jooby-service-manager/-init-.html | 15 --- .../-jooby-service-manager/-l-o-g.html | 14 -- .../-jooby-service-manager/apply-routes.html | 18 --- .../-jooby-service-manager/bind.html | 32 ----- .../-jooby-service-manager/call.html | 14 -- .../-jooby-service-manager/calls.html | 14 -- .../-jooby-service-manager/counter.html | 14 -- .../-jooby-service-manager/get-calls.html | 16 --- .../-jooby-service-manager/get-parameter.html | 14 -- .../-jooby-service-manager/index.html | 145 --------------------- .../-jooby-service-manager/mapper.html | 14 -- .../-jooby-service-manager/routes.html | 14 -- .../-jooby-service-manager/service.html | 14 -- 13 files changed, 338 deletions(-) delete mode 100644 api/pl.treksoft.kvision.remote/-jooby-service-manager/-init-.html delete mode 100644 api/pl.treksoft.kvision.remote/-jooby-service-manager/-l-o-g.html delete mode 100644 api/pl.treksoft.kvision.remote/-jooby-service-manager/apply-routes.html delete mode 100644 api/pl.treksoft.kvision.remote/-jooby-service-manager/bind.html delete mode 100644 api/pl.treksoft.kvision.remote/-jooby-service-manager/call.html delete mode 100644 api/pl.treksoft.kvision.remote/-jooby-service-manager/calls.html delete mode 100644 api/pl.treksoft.kvision.remote/-jooby-service-manager/counter.html delete mode 100644 api/pl.treksoft.kvision.remote/-jooby-service-manager/get-calls.html delete mode 100644 api/pl.treksoft.kvision.remote/-jooby-service-manager/get-parameter.html delete mode 100644 api/pl.treksoft.kvision.remote/-jooby-service-manager/index.html delete mode 100644 api/pl.treksoft.kvision.remote/-jooby-service-manager/mapper.html delete mode 100644 api/pl.treksoft.kvision.remote/-jooby-service-manager/routes.html delete mode 100644 api/pl.treksoft.kvision.remote/-jooby-service-manager/service.html (limited to 'api/pl.treksoft.kvision.remote/-jooby-service-manager') diff --git a/api/pl.treksoft.kvision.remote/-jooby-service-manager/-init-.html b/api/pl.treksoft.kvision.remote/-jooby-service-manager/-init-.html deleted file mode 100644 index 67af7141..00000000 --- a/api/pl.treksoft.kvision.remote/-jooby-service-manager/-init-.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -JoobyServiceManager.<init> - kvision - - - -kvision / pl.treksoft.kvision.remote / JoobyServiceManager / <init>
-
-

<init>

- -JoobyServiceManager(service: T) -

Multiplatform service manager for Jooby.

- - diff --git a/api/pl.treksoft.kvision.remote/-jooby-service-manager/-l-o-g.html b/api/pl.treksoft.kvision.remote/-jooby-service-manager/-l-o-g.html deleted file mode 100644 index fa26ca59..00000000 --- a/api/pl.treksoft.kvision.remote/-jooby-service-manager/-l-o-g.html +++ /dev/null @@ -1,14 +0,0 @@ - - - -JoobyServiceManager.LOG - kvision - - - -kvision / pl.treksoft.kvision.remote / JoobyServiceManager / LOG
-
-

LOG

- -val LOG: <ERROR CLASS> - - diff --git a/api/pl.treksoft.kvision.remote/-jooby-service-manager/apply-routes.html b/api/pl.treksoft.kvision.remote/-jooby-service-manager/apply-routes.html deleted file mode 100644 index cb536155..00000000 --- a/api/pl.treksoft.kvision.remote/-jooby-service-manager/apply-routes.html +++ /dev/null @@ -1,18 +0,0 @@ - - - -JoobyServiceManager.applyRoutes - kvision - - - -kvision / pl.treksoft.kvision.remote / JoobyServiceManager / applyRoutes
-
-

applyRoutes

- -fun applyRoutes(k: KVServer): Unit -

Applies all defined routes to the given server.

-

Parameters

-

-k - a server

- - diff --git a/api/pl.treksoft.kvision.remote/-jooby-service-manager/bind.html b/api/pl.treksoft.kvision.remote/-jooby-service-manager/bind.html deleted file mode 100644 index 5c2ccb21..00000000 --- a/api/pl.treksoft.kvision.remote/-jooby-service-manager/bind.html +++ /dev/null @@ -1,32 +0,0 @@ - - - -JoobyServiceManager.bind - kvision - - - -kvision / pl.treksoft.kvision.remote / JoobyServiceManager / bind
-
-

bind

- -protected inline fun <reified RET> bind(noinline function: T.(Request?) -> Deferred<RET>, route: String? = null, method: RpcHttpMethod = RpcHttpMethod.POST): Unit
- -protected inline fun <reified PAR, reified RET> bind(noinline function: T.(PAR, Request?) -> Deferred<RET>, route: String? = null, method: RpcHttpMethod = RpcHttpMethod.POST): Unit
- -protected inline fun <reified PAR1, reified PAR2, reified RET> bind(noinline function: T.(PAR1, PAR2, Request?) -> Deferred<RET>, route: String? = null, method: RpcHttpMethod = RpcHttpMethod.POST): Unit
- -protected inline fun <reified PAR1, reified PAR2, reified PAR3, reified RET> bind(noinline function: T.(PAR1, PAR2, PAR3, Request?) -> Deferred<RET>, route: String? = null, method: RpcHttpMethod = RpcHttpMethod.POST): Unit
- -protected inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified RET> bind(noinline function: T.(PAR1, PAR2, PAR3, PAR4, Request?) -> Deferred<RET>, route: String? = null, method: RpcHttpMethod = RpcHttpMethod.POST): Unit
- -protected inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified PAR5, reified RET> bind(noinline function: T.(PAR1, PAR2, PAR3, PAR4, PAR5, Request?) -> Deferred<RET>, route: String? = null, method: RpcHttpMethod = RpcHttpMethod.POST): Unit -

Binds a given route with a function of the receiver.

-

Parameters

-

-function - a function of the receiver

-

-route - a route

-

-method - a HTTP method

- - diff --git a/api/pl.treksoft.kvision.remote/-jooby-service-manager/call.html b/api/pl.treksoft.kvision.remote/-jooby-service-manager/call.html deleted file mode 100644 index a5405d6f..00000000 --- a/api/pl.treksoft.kvision.remote/-jooby-service-manager/call.html +++ /dev/null @@ -1,14 +0,0 @@ - - - -JoobyServiceManager.call - kvision - - - -kvision / pl.treksoft.kvision.remote / JoobyServiceManager / call
-
-

call

- -fun call(method: RpcHttpMethod, path: String, handler: (Request, <ERROR CLASS>) -> Unit): KVServer.() -> Unit - - diff --git a/api/pl.treksoft.kvision.remote/-jooby-service-manager/calls.html b/api/pl.treksoft.kvision.remote/-jooby-service-manager/calls.html deleted file mode 100644 index a20b12e9..00000000 --- a/api/pl.treksoft.kvision.remote/-jooby-service-manager/calls.html +++ /dev/null @@ -1,14 +0,0 @@ - - - -JoobyServiceManager.calls - kvision - - - -kvision / pl.treksoft.kvision.remote / JoobyServiceManager / calls
-
-

calls

- -protected val calls: MutableMap<String, Pair<String, RpcHttpMethod>> - - diff --git a/api/pl.treksoft.kvision.remote/-jooby-service-manager/counter.html b/api/pl.treksoft.kvision.remote/-jooby-service-manager/counter.html deleted file mode 100644 index 0d191de3..00000000 --- a/api/pl.treksoft.kvision.remote/-jooby-service-manager/counter.html +++ /dev/null @@ -1,14 +0,0 @@ - - - -JoobyServiceManager.counter - kvision - - - -kvision / pl.treksoft.kvision.remote / JoobyServiceManager / counter
-
-

counter

- -var counter: Int - - diff --git a/api/pl.treksoft.kvision.remote/-jooby-service-manager/get-calls.html b/api/pl.treksoft.kvision.remote/-jooby-service-manager/get-calls.html deleted file mode 100644 index 0957bf20..00000000 --- a/api/pl.treksoft.kvision.remote/-jooby-service-manager/get-calls.html +++ /dev/null @@ -1,16 +0,0 @@ - - - -JoobyServiceManager.getCalls - kvision - - - -kvision / pl.treksoft.kvision.remote / JoobyServiceManager / getCalls
-
-

getCalls

- -open fun getCalls(): Map<String, Pair<String, RpcHttpMethod>> -

Overrides ServiceManager.getCalls

-

Returns the map of defined paths.

- - diff --git a/api/pl.treksoft.kvision.remote/-jooby-service-manager/get-parameter.html b/api/pl.treksoft.kvision.remote/-jooby-service-manager/get-parameter.html deleted file mode 100644 index 99b992b5..00000000 --- a/api/pl.treksoft.kvision.remote/-jooby-service-manager/get-parameter.html +++ /dev/null @@ -1,14 +0,0 @@ - - - -JoobyServiceManager.getParameter - kvision - - - -kvision / pl.treksoft.kvision.remote / JoobyServiceManager / getParameter
-
-

getParameter

- -protected inline fun <reified T> getParameter(str: String?): T - - diff --git a/api/pl.treksoft.kvision.remote/-jooby-service-manager/index.html b/api/pl.treksoft.kvision.remote/-jooby-service-manager/index.html deleted file mode 100644 index 1e24f81b..00000000 --- a/api/pl.treksoft.kvision.remote/-jooby-service-manager/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - -JoobyServiceManager - kvision - - - -kvision / pl.treksoft.kvision.remote / JoobyServiceManager
-
-

JoobyServiceManager

-open expect class JoobyServiceManager<T : Any> : ServiceManager -

Multiplatform service manager for Jooby.

-

Constructors

- - - - - - - -
-

<init>

-
-JoobyServiceManager(service: T) -

Multiplatform service manager for Jooby.

-
-

Properties

- - - - - - - - - - - - - - - - - - - - - - - -
-

calls

-
-val calls: MutableMap<String, Pair<String, RpcHttpMethod>>
-

counter

-
-var counter: Int
-

mapper

-
-val mapper: <ERROR CLASS>
-

routes

-
-val routes: MutableList<KVServer.() -> Unit>
-

service

-
-val service: T
-

Functions

- - - - - - - - - - - -
-

applyRoutes

-
-fun applyRoutes(k: KVServer): Unit -

Applies all defined routes to the given server.

-
-

bind

-
-fun <RET> bind(function: T.(Request?) -> Deferred<RET>, route: String? = null, method: RpcHttpMethod = RpcHttpMethod.POST): Unit
-fun <PAR, RET> bind(function: T.(PAR, Request?) -> Deferred<RET>, route: String? = null, method: RpcHttpMethod = RpcHttpMethod.POST): Unit
-fun <PAR1, PAR2, RET> bind(function: T.(PAR1, PAR2, Request?) -> Deferred<RET>, route: String? = null, method: RpcHttpMethod = RpcHttpMethod.POST): Unit
-fun <PAR1, PAR2, PAR3, RET> bind(function: T.(PAR1, PAR2, PAR3, Request?) -> Deferred<RET>, route: String? = null, method: RpcHttpMethod = RpcHttpMethod.POST): Unit
-fun <PAR1, PAR2, PAR3, PAR4, RET> bind(function: T.(PAR1, PAR2, PAR3, PAR4, Request?) -> Deferred<RET>, route: String? = null, method: RpcHttpMethod = RpcHttpMethod.POST): Unit
-fun <PAR1, PAR2, PAR3, PAR4, PAR5, RET> bind(function: T.(PAR1, PAR2, PAR3, PAR4, PAR5, Request?) -> Deferred<RET>, route: String? = null, method: RpcHttpMethod = RpcHttpMethod.POST): Unit -

Binds a given route with a function of the receiver.

-
-