From 0365722f8549ee93918be99da1b9f901cf0b2c8d Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Fri, 13 Mar 2020 01:05:20 +0100 Subject: API documentation for KVision 3.5.2 --- .../-k-v-remote-agent/index.html | 78 ++++++++-------------- 1 file changed, 27 insertions(+), 51 deletions(-) (limited to 'api/pl.treksoft.kvision.remote/-k-v-remote-agent/index.html') 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 59e0dccd..b0823c0d 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 @@ -8,19 +8,19 @@ kvision / pl.treksoft.kvision.remote / KVRemoteAgent

KVRemoteAgent

-open class KVRemoteAgent<T : Any> : RemoteAgent +(js) open class KVRemoteAgent<T : Any> : RemoteAgent

Client side agent for JSON-RPC remote calls.

Constructors

+KVRemoteAgent(serviceManager: KVServiceMgr<T>)
-

<init>

+(js) +

<init>

-KVRemoteAgent(serviceManager: KVServiceManager<T>)

Client side agent for JSON-RPC remote calls.

-
@@ -29,17 +29,19 @@ -

callAgent

+(js) +

callAgent

val callAgent: CallAgent -

serviceManager

+(js) +

serviceManager

-val serviceManager: KVServiceManager<T> +val serviceManager: KVServiceMgr<T> @@ -48,60 +50,34 @@ -

call

+(js) +

call

-suspend fun <RET : Any, T> call(function: suspend T.() -> RET): RET
-suspend fun <RET : Any, T> call(function: suspend T.() -> List<RET>): List<RET>
-suspend fun <PAR, RET : Any, T> call(function: suspend T.(PAR) -> RET, p: PAR): RET
-suspend fun <PAR, RET : Any, T> call(function: suspend T.(PAR) -> List<RET>, p: PAR): List<RET>
-suspend fun <PAR1, PAR2, RET : Any, T> call(function: suspend T.(PAR1, PAR2) -> RET, p1: PAR1, p2: PAR2): RET
-suspend fun <PAR1, PAR2, RET : Any, T> call(function: suspend T.(PAR1, PAR2) -> List<RET>, p1: PAR1, p2: PAR2): List<RET>
-suspend fun <PAR1, PAR2, PAR3, RET : Any, T> call(function: suspend T.(PAR1, PAR2, PAR3) -> RET, p1: PAR1, p2: PAR2, p3: PAR3): RET
-suspend fun <PAR1, PAR2, PAR3, RET : Any, T> call(function: suspend T.(PAR1, PAR2, PAR3) -> List<RET>, p1: PAR1, p2: PAR2, p3: PAR3): List<RET>
-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>

Executes defined call to a remote web service.

- +suspend fun <RET : Any, T> call(function: suspend T.() -> RET): RET
+suspend fun <RET : Any, T> call(function: suspend T.() -> List<RET>): List<RET>
+suspend fun <PAR, RET : Any, T> call(function: suspend T.(PAR) -> RET, p: PAR): RET
+suspend fun <PAR, RET : Any, T> call(function: suspend T.(PAR) -> List<RET>, p: PAR): List<RET>
+suspend fun <PAR1, PAR2, RET : Any, T> call(function: suspend T.(PAR1, PAR2) -> RET, p1: PAR1, p2: PAR2): RET
+suspend fun <PAR1, PAR2, RET : Any, T> call(function: suspend T.(PAR1, PAR2) -> List<RET>, p1: PAR1, p2: PAR2): List<RET>
+suspend fun <PAR1, PAR2, PAR3, RET : Any, T> call(function: suspend T.(PAR1, PAR2, PAR3