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/-init-.html | 15 +++++ .../-spring-remote-agent/call-agent.html | 14 +++++ .../-spring-remote-agent/call.html | 37 +++++++++++ .../-spring-remote-agent/index.html | 72 ++++++++++++++++++++++ .../-spring-remote-agent/service-manager.html | 14 +++++ 5 files changed, 152 insertions(+) create mode 100644 api/pl.treksoft.kvision.remote/-spring-remote-agent/-init-.html create mode 100644 api/pl.treksoft.kvision.remote/-spring-remote-agent/call-agent.html create mode 100644 api/pl.treksoft.kvision.remote/-spring-remote-agent/call.html create mode 100644 api/pl.treksoft.kvision.remote/-spring-remote-agent/index.html create mode 100644 api/pl.treksoft.kvision.remote/-spring-remote-agent/service-manager.html (limited to 'api/pl.treksoft.kvision.remote/-spring-remote-agent') diff --git a/api/pl.treksoft.kvision.remote/-spring-remote-agent/-init-.html b/api/pl.treksoft.kvision.remote/-spring-remote-agent/-init-.html new file mode 100644 index 00000000..6d8b71c8 --- /dev/null +++ b/api/pl.treksoft.kvision.remote/-spring-remote-agent/-init-.html @@ -0,0 +1,15 @@ + + + +SpringRemoteAgent.<init> - kvision + + + +kvision / pl.treksoft.kvision.remote / SpringRemoteAgent / <init>
+
+

<init>

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

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

+ + diff --git a/api/pl.treksoft.kvision.remote/-spring-remote-agent/call-agent.html b/api/pl.treksoft.kvision.remote/-spring-remote-agent/call-agent.html new file mode 100644 index 00000000..932eea7b --- /dev/null +++ b/api/pl.treksoft.kvision.remote/-spring-remote-agent/call-agent.html @@ -0,0 +1,14 @@ + + + +SpringRemoteAgent.callAgent - kvision + + + +kvision / pl.treksoft.kvision.remote / SpringRemoteAgent / callAgent
+
+

callAgent

+ +val callAgent: CallAgent + + diff --git a/api/pl.treksoft.kvision.remote/-spring-remote-agent/call.html b/api/pl.treksoft.kvision.remote/-spring-remote-agent/call.html new file mode 100644 index 00000000..5b9ec2f1 --- /dev/null +++ b/api/pl.treksoft.kvision.remote/-spring-remote-agent/call.html @@ -0,0 +1,37 @@ + + + +SpringRemoteAgent.call - kvision + + + +kvision / pl.treksoft.kvision.remote / SpringRemoteAgent / call
+
+

call

+ +inline fun <reified RET : Any, T> call(noinline function: T.() -> Deferred<RET>): Deferred<RET>
+ +inline fun <reified RET : Any, T> call(noinline function: T.() -> Deferred<List<RET>>): Deferred<List<RET>>
+ +inline fun <reified PAR, reified RET : Any, T> call(noinline function: T.(PAR) -> Deferred<RET>, p: PAR): Deferred<RET>
+ +inline fun <reified PAR, reified RET : Any, T> call(noinline function: T.(PAR) -> Deferred<List<RET>>, p: PAR): Deferred<List<RET>>
+ +inline fun <reified PAR1, reified PAR2, reified RET : Any, T> call(noinline function: T.(PAR1, PAR2) -> Deferred<RET>, p1: PAR1, p2: PAR2): Deferred<RET>
+ +inline fun <reified PAR1, reified PAR2, reified RET : Any, T> call(noinline function: T.(PAR1, PAR2) -> Deferred<List<RET>>, p1: PAR1, p2: PAR2): Deferred<List<RET>>
+ +inline fun <reified PAR1, reified PAR2, reified PAR3, reified RET : Any, T> call(noinline function: T.(PAR1, PAR2, PAR3) -> Deferred<RET>, p1: PAR1, p2: PAR2, p3: PAR3): Deferred<RET>
+ +inline fun <reified PAR1, reified PAR2, reified PAR3, reified RET : Any, T> call(noinline function: T.(PAR1, PAR2, PAR3) -> Deferred<List<RET>>, p1: PAR1, p2: PAR2, p3: PAR3): Deferred<List<RET>>
+ +inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified RET : Any, T> call(noinline function: T.(PAR1, PAR2, PAR3, PAR4) -> Deferred<RET>, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4): Deferred<RET>
+ +inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified RET : Any, T> call(noinline function: T.(PAR1, PAR2, PAR3, PAR4) -> Deferred<List<RET>>, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4): Deferred<List<RET>>
+ +inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified PAR5, reified RET : Any, T> call(noinline function: T.(PAR1, PAR2, PAR3, PAR4, PAR5) -> Deferred<RET>, p1: PAR1, p2: PAR2, p3: PAR3, p4: PAR4, p5: PAR5): Deferred<RET>
+ +inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified PAR5, reified RET : Any, T> call(noinline 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.

+ + 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.

+
+ + diff --git a/api/pl.treksoft.kvision.remote/-spring-remote-agent/service-manager.html b/api/pl.treksoft.kvision.remote/-spring-remote-agent/service-manager.html new file mode 100644 index 00000000..c8bb5c61 --- /dev/null +++ b/api/pl.treksoft.kvision.remote/-spring-remote-agent/service-manager.html @@ -0,0 +1,14 @@ + + + +SpringRemoteAgent.serviceManager - kvision + + + +kvision / pl.treksoft.kvision.remote / SpringRemoteAgent / serviceManager
+
+

serviceManager

+ +val serviceManager: SpringServiceManager<T> + + -- cgit