From ccde61ffd1053e08612ed18788aaa7621b541a5e Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 20 Apr 2020 00:23:54 +0200 Subject: API documentation for KVision 3.7.0 --- api/pl.treksoft.kvision.remote/-k-v-remote-agent/call.html | 6 +++++- api/pl.treksoft.kvision.remote/-k-v-remote-agent/index.html | 4 +++- .../-k-v-service-manager/bind-tabulator-remote.html | 4 ++-- api/pl.treksoft.kvision.remote/-k-v-service-manager/bind.html | 4 +++- api/pl.treksoft.kvision.remote/-k-v-service-manager/index.html | 5 +++-- 5 files changed, 16 insertions(+), 7 deletions(-) (limited to 'api/pl.treksoft.kvision.remote') diff --git a/api/pl.treksoft.kvision.remote/-k-v-remote-agent/call.html b/api/pl.treksoft.kvision.remote/-k-v-remote-agent/call.html index cbea1f76..7e8bc9d8 100644 --- a/api/pl.treksoft.kvision.remote/-k-v-remote-agent/call.html +++ b/api/pl.treksoft.kvision.remote/-k-v-remote-agent/call.html @@ -31,7 +31,11 @@ suspend inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified PAR5, reified RET : Any, T> call(noinline function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5) -> RET, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4, p5: PAR5): RET
-suspend inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified PAR5, reified RET : Any, T> call(noinline function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5) -> List<RET>, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4, p5: PAR5): List<RET> +suspend inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified PAR5, reified RET : Any, T> call(noinline function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5) -> List<RET>, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4, p5: PAR5): List<RET>
+ +suspend inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified PAR5, reified PAR6, reified RET : Any, T> call(noinline function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5, PAR6) -> RET, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4, p5: PAR5, p6: PAR6): RET
+ +suspend inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified PAR5, reified PAR6, reified RET : Any, T> call(noinline function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5, PAR6) -> List<RET>, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4, p5: PAR5, p6: PAR6): List<RET>

Executes defined call to a remote web service.

diff --git a/api/pl.treksoft.kvision.remote/-k-v-remote-agent/index.html b/api/pl.treksoft.kvision.remote/-k-v-remote-agent/index.html index b0823c0d..1a08a983 100644 --- a/api/pl.treksoft.kvision.remote/-k-v-remote-agent/index.html +++ b/api/pl.treksoft.kvision.remote/-k-v-remote-agent/index.html @@ -66,7 +66,9 @@ suspend fun <PAR1, PAR2, PAR3, PAR4, RET : Any, T> call(function: suspend T.(PAR1, PAR2, PAR3, PAR4) -> RET, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4): RET
suspend fun <PAR1, PAR2, PAR3, PAR4, RET : Any, T> call(function: suspend T.(PAR1, PAR2, PAR3, PAR4) -> List<RET>, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4): List<RET>
suspend fun <PAR1, PAR2, PAR3, PAR4, PAR5, RET : Any, T> call(function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5) -> RET, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4, p5: PAR5): RET
-suspend fun <PAR1, PAR2, PAR3, PAR4, PAR5, RET : Any, T> call(function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5) -> List<RET>, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4, p5: PAR5): List<RET> +suspend fun <PAR1, PAR2, PAR3, PAR4, PAR5, RET : Any, T> call(function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5) -> List<RET>, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4, p5: PAR5): List<RET>
+suspend fun <PAR1, PAR2, PAR3, PAR4, PAR5, PAR6, RET : Any, T> call(function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5, PAR6) -> RET, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4, p5: PAR5, p6: PAR6): RET
+suspend fun <PAR1, PAR2, PAR3, PAR4, PAR5, PAR6, RET : Any, T> call(function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5, PAR6) -> List<RET>, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4, p5: PAR5, p6: PAR6): List<RET> diff --git a/api/pl.treksoft.kvision.remote/-k-v-service-manager/bind-tabulator-remote.html b/api/pl.treksoft.kvision.remote/-k-v-service-manager/bind-tabulator-remote.html index 3a881729..63e7327f 100644 --- a/api/pl.treksoft.kvision.remote/-k-v-service-manager/bind-tabulator-remote.html +++ b/api/pl.treksoft.kvision.remote/-k-v-service-manager/bind-tabulator-remote.html @@ -8,8 +8,8 @@ kvision / pl.treksoft.kvision.remote / KVServiceManager / bindTabulatorRemote

bindTabulatorRemote

-(js) -protected inline fun <reified RET> bindTabulatorRemote(noinline function: suspend T.(Int?, Int?, List<RemoteFilter>?, List<RemoteSorter>?, String?) -> RemoteData<RET>): Unit +(js) +protected inline fun <reified RET> bindTabulatorRemote(noinline function: suspend T.(Int?, Int?, List<RemoteFilter>?, List<RemoteSorter>?, String?) -> RemoteData<RET>, route: String? = null): Unit

Binds a given function of the receiver as a tabulator component source

Parameters

diff --git a/api/pl.treksoft.kvision.remote/-k-v-service-manager/bind.html b/api/pl.treksoft.kvision.remote/-k-v-service-manager/bind.html index d5177b39..9cbc30ff 100644 --- a/api/pl.treksoft.kvision.remote/-k-v-service-manager/bind.html +++ b/api/pl.treksoft.kvision.remote/-k-v-service-manager/bind.html @@ -19,7 +19,9 @@ protected inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified RET> bind(noinline function: suspend T.(PAR1, PAR2, PAR3, PAR4) -> RET, method: HttpMethod = HttpMethod.POST, route: String? = null): Unit
-protected inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified PAR5, reified RET> bind(noinline function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5) -> RET, method: HttpMethod = HttpMethod.POST, route: String? = null): Unit +protected inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified PAR5, reified RET> bind(noinline function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5) -> RET, method: HttpMethod = HttpMethod.POST, route: String? = null): Unit
+ +protected inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified PAR5, reified PAR6, reified RET> bind(noinline function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5, PAR6) -> RET, method: HttpMethod = HttpMethod.POST, route: String? = null): Unit

Binds a given route with a function of the receiver.

Parameters

diff --git a/api/pl.treksoft.kvision.remote/-k-v-service-manager/index.html b/api/pl.treksoft.kvision.remote/-k-v-service-manager/index.html index 69623e03..0abd9ea0 100644 --- a/api/pl.treksoft.kvision.remote/-k-v-service-manager/index.html +++ b/api/pl.treksoft.kvision.remote/-k-v-service-manager/index.html @@ -60,7 +60,8 @@ fun <PAR1, PAR2, RET> bind(function: suspend T.(PAR1, PAR2) -> RET, method: HttpMethod = HttpMethod.POST, route: String? = null): Unit
fun <PAR1, PAR2, PAR3, RET> bind(function: suspend T.(PAR1, PAR2, PAR3) -> RET, method: HttpMethod = HttpMethod.POST, route: String? = null): Unit
fun <PAR1, PAR2, PAR3, PAR4, RET> bind(function: suspend T.(PAR1, PAR2, PAR3, PAR4) -> RET, method: HttpMethod = HttpMethod.POST, route: String? = null): Unit
-fun <PAR1, PAR2, PAR3, PAR4, PAR5, RET> bind(function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5) -> RET, method: HttpMethod = HttpMethod.POST, route: String? = null): Unit +fun <PAR1, PAR2, PAR3, PAR4, PAR5, RET> bind(function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5) -> RET, method: HttpMethod = HttpMethod.POST, route: String? = null): Unit
+fun <PAR1, PAR2, PAR3, PAR4, PAR5, PAR6, RET> bind(function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5, PAR6) -> RET, method: HttpMethod = HttpMethod.POST, route: String? = null): Unit

Binds a given function of the receiver as a web socket connection

fun <PAR1 : Any, PAR2 : Any> bind(function: suspend T.(ReceiveChannel<PAR1>, SendChannel<PAR2>) -> Unit, route: String? = null): Unit @@ -71,7 +72,7 @@

Binds a given function of the receiver as a tabulator component source

-fun <RET> bindTabulatorRemote(function: suspend T.(Int?, Int?, List<RemoteFilter>?, List<RemoteSorter>?, String?) -> RemoteData<RET>): Unit +fun <RET> bindTabulatorRemote(function: suspend T.(Int?, Int?, List<RemoteFilter>?, List<RemoteSorter>?, String?) -> RemoteData<RET>, route: String? = null): Unit -- cgit