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 --- .../-jooby-remote-agent/index.html | 72 ++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 api/pl.treksoft.kvision.remote/-jooby-remote-agent/index.html (limited to 'api/pl.treksoft.kvision.remote/-jooby-remote-agent/index.html') diff --git a/api/pl.treksoft.kvision.remote/-jooby-remote-agent/index.html b/api/pl.treksoft.kvision.remote/-jooby-remote-agent/index.html new file mode 100644 index 00000000..dcc267bb --- /dev/null +++ b/api/pl.treksoft.kvision.remote/-jooby-remote-agent/index.html @@ -0,0 +1,72 @@ + + + +JoobyRemoteAgent - kvision + + + +kvision / pl.treksoft.kvision.remote / JoobyRemoteAgent
+
+

JoobyRemoteAgent

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

Client side agent for JSON-RPC remote calls with Jooby.

+

Constructors

+ + + + + + + +
+

<init>

+
+JoobyRemoteAgent(serviceManager: JoobyServiceManager<T>) +

Client side agent for JSON-RPC remote calls with Jooby.

+
+

Properties

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

callAgent

+
+val callAgent: CallAgent
+

serviceManager

+
+val serviceManager: JoobyServiceManager<T>
+

Functions

+ + + + + + + +
+

call

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