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 --- .../-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 +++-- 3 files changed, 8 insertions(+), 5 deletions(-) (limited to 'api/pl.treksoft.kvision.remote/-k-v-service-manager') 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