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 --- api/pl.treksoft.kvision.remote/-k-v-remote-agent/web-socket.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'api/pl.treksoft.kvision.remote/-k-v-remote-agent/web-socket.html') diff --git a/api/pl.treksoft.kvision.remote/-k-v-remote-agent/web-socket.html b/api/pl.treksoft.kvision.remote/-k-v-remote-agent/web-socket.html index 464f3144..3e4b0ad0 100644 --- a/api/pl.treksoft.kvision.remote/-k-v-remote-agent/web-socket.html +++ b/api/pl.treksoft.kvision.remote/-k-v-remote-agent/web-socket.html @@ -8,11 +8,11 @@ kvision / pl.treksoft.kvision.remote / KVRemoteAgent / webSocket

webSocket

- -suspend inline fun <reified PAR1 : Any, reified PAR2 : Any> webSocket(noinline function: suspend T.(<ERROR CLASS><PAR1>, <ERROR CLASS><PAR2>) -> Unit, noinline handler: suspend (<ERROR CLASS><PAR1>, <ERROR CLASS><PAR2>) -> Unit): Unit +(js) +suspend inline fun <reified PAR1 : Any, reified PAR2 : Any> webSocket(noinline function: suspend T.(ReceiveChannel<PAR1>, SendChannel<PAR2>) -> Unit, noinline handler: suspend (SendChannel<PAR1>, ReceiveChannel<PAR2>) -> Unit): Unit

Executes defined web socket connection

- -suspend inline fun <reified PAR1 : Any, reified PAR2 : Any> webSocket(noinline function: suspend T.(<ERROR CLASS><PAR1>, <ERROR CLASS><List<PAR2>>) -> Unit, noinline handler: suspend (<ERROR CLASS><PAR1>, <ERROR CLASS><List<PAR2>>) -> Unit): Unit +(js) +suspend inline fun <reified PAR1 : Any, reified PAR2 : Any> webSocket(noinline function: suspend T.(ReceiveChannel<PAR1>, SendChannel<List<PAR2>>) -> Unit, noinline handler: suspend (SendChannel<PAR1>, ReceiveChannel<List<PAR2>>) -> Unit): Unit

Executes defined web socket connection returning list objects

-- cgit