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 --- .../-k-v-remote-agent/index.html | 72 ++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 api/pl.treksoft.kvision.remote/-k-v-remote-agent/index.html (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 new file mode 100644 index 00000000..281e5bfa --- /dev/null +++ b/api/pl.treksoft.kvision.remote/-k-v-remote-agent/index.html @@ -0,0 +1,72 @@ + + + +KVRemoteAgent - kvision + + + +kvision / pl.treksoft.kvision.remote / KVRemoteAgent
+
+

KVRemoteAgent

+open class KVRemoteAgent<T : Any> : RemoteAgent +

Client side agent for JSON-RPC remote calls.

+

Constructors

+ + + + + + + +
+

<init>

+
+KVRemoteAgent(serviceManager: KVServiceManager<T>) +

Client side agent for JSON-RPC remote calls.

+
+

Properties

+ + + + + + + + + + + +
+

callAgent

+
+val callAgent: CallAgent
+

serviceManager

+
+val serviceManager: KVServiceManager<T>
+

Functions

+ + + + + + + +
+

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.

+
+ + -- cgit