From eb930482e9972a21d39f2aea8b813acf58ff5b64 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 22 Oct 2018 00:01:39 +0200 Subject: API documentation for KVision 0.0.19 --- .../-spring-remote-agent/index.html | 72 ++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 api/pl.treksoft.kvision.remote/-spring-remote-agent/index.html (limited to 'api/pl.treksoft.kvision.remote/-spring-remote-agent/index.html') diff --git a/api/pl.treksoft.kvision.remote/-spring-remote-agent/index.html b/api/pl.treksoft.kvision.remote/-spring-remote-agent/index.html new file mode 100644 index 00000000..98110ab6 --- /dev/null +++ b/api/pl.treksoft.kvision.remote/-spring-remote-agent/index.html @@ -0,0 +1,72 @@ + + + +SpringRemoteAgent - kvision + + + +kvision / pl.treksoft.kvision.remote / SpringRemoteAgent
+
+

SpringRemoteAgent

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

Client side agent for JSON-RPC remote calls with Spring Boot.

+

Constructors

+ + + + + + + +
+

<init>

+
+SpringRemoteAgent(serviceManager: SpringServiceManager<T>) +

Client side agent for JSON-RPC remote calls with Spring Boot.

+
+

Properties

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

callAgent

+
+val callAgent: CallAgent
+

serviceManager

+
+val serviceManager: SpringServiceManager<T>
+

Functions

+ + + + + + + +
+

call

+
+fun <RET : Any, T> call(function: T.() -> Deferred<RET>): Deferred<RET>
+fun <RET : Any, T> call(function: T.() -> Deferred<List<RET>>): Deferred<List<RET>>
+fun <PAR, RET : Any, T> call(function: T.(PAR) -> Deferred<RET>, p: PAR): Deferred<RET>
+fun <PAR, RET : Any, T> call(function: T.(PAR) -> Deferred<List<RET>>, p: PAR): Deferred<List<RET>>
+fun <PAR1, PAR2, RET : Any, T> call(function: T.(PAR1, PAR2) -> Deferred<RET>, p1: PAR1, p2: PAR2): Deferred<RET>
+fun <PAR1, PAR2, RET : Any, T> call(function: T.(PAR1, PAR2) -> Deferred<List<RET>>, p1: PAR1, p2: PAR2): Deferred<List<RET>>
+fun <PAR1, PAR2, PAR3, RET : Any, T> call(function: T.(PAR1, PAR2, PAR3) -> Deferred<RET>, p1: PAR1, p2: PAR2, p3: PAR3): Deferred<RET>
+fun <PAR1, PAR2, PAR3, RET : Any, T> call(function: T.(PAR1, PAR2, PAR3) -> Deferred<List<RET>>, p1: PAR1, p2: PAR2, p3: PAR3): Deferred<List<RET>>
+fun <PAR1, PAR2, PAR3, PAR4, RET : Any, T> call(function: T.(PAR1, PAR2, PAR3, PAR4) -> Deferred<RET>, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4): Deferred<RET>
+fun <PAR1, PAR2, PAR3, PAR4, RET : Any, T> call(function: T.(PAR1, PAR2, PAR3, PAR4) -> Deferred<List<RET>>, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4): Deferred<List<RET>>
+fun <PAR1, PAR2, PAR3, PAR4, PAR5, RET : Any, T> call(function: T.(PAR1, PAR2, PAR3, PAR4, PAR5) -> Deferred<RET>, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4, p5: PAR5): Deferred<RET>
+fun <PAR1, PAR2, PAR3, PAR4, PAR5, RET : Any, T> call(function: T.(PAR1, PAR2, PAR3, PAR4, PAR5) -> Deferred<List<RET>>, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4, p5: PAR5): Deferred<List<RET>> +

Executes defined call to a remote web service.

+
+ + -- cgit