KVServiceManagerJs

open class KVServiceManagerJs<out T : Any>

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
val calls: MutableMap<String, <Error class: unknown class><String, <Error class: unknown class>>>
Link copied to clipboard

Functions

Link copied to clipboard
inline fun <PAR : Any> bind(noinline function: suspend T.(<Error class: unknown class><PAR>) -> Unit, route: String?)

Binds a given server-sent events connection with a function of the receiver.

inline fun <PAR1 : Any, PAR2 : Any> bind(noinline function: suspend T.(<Error class: unknown class><PAR1>, <Error class: unknown class><PAR2>) -> Unit, route: String?)

Binds a given web socket connection with a function of the receiver.

inline fun <RET> bind(noinline function: suspend T.() -> RET, method: <Error class: unknown class>, route: String?)
inline fun <PAR, RET> bind(noinline function: suspend T.(PAR) -> RET, method: <Error class: unknown class>, route: String?)
inline fun <PAR1, PAR2, RET> bind(noinline function: suspend T.(PAR1, PAR2) -> RET, method: <Error class: unknown class>, route: String?)
inline fun <PAR1, PAR2, PAR3, RET> bind(noinline function: suspend T.(PAR1, PAR2, PAR3) -> RET, method: <Error class: unknown class>, route: String?)
inline fun <PAR1, PAR2, PAR3, PAR4, RET> bind(noinline function: suspend T.(PAR1, PAR2, PAR3, PAR4) -> RET, method: <Error class: unknown class>, route: String?)
inline fun <PAR1, PAR2, PAR3, PAR4, PAR5, RET> bind(noinline function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5) -> RET, method: <Error class: unknown class>, route: String?)
inline fun <PAR1, PAR2, PAR3, PAR4, PAR5, PAR6, RET> bind(noinline function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5, PAR6) -> RET, method: <Error class: unknown class>, route: String?)

Binds a given route with a function of the receiver.

Link copied to clipboard
inline fun <RET> bindTabulatorRemote(noinline function: suspend T.(Int?, Int?, List<<Error class: unknown class>>?, List<<Error class: unknown class>>?, String?) -> <Error class: unknown class><RET>, route: String?)

Binds a given function of the receiver as a tabulator component source

Link copied to clipboard
open fun getCall(function: Function<*>): <Error class: unknown class><String, <Error class: unknown class>>?