kvision / pl.treksoft.kvision.remote / KVServiceManager

KVServiceManager

open actual class KVServiceManager<T : Any>

Multiplatform service manager.

Constructors

<init>

KVServiceManager(serviceClass: KClass<T>)

Multiplatform service manager.

Properties

calls

val calls: MutableMap<String, Pair<String, RpcHttpMethod>>

counter

var counter: Int

deleteRequests

val deleteRequests: MutableMap<String, (Request, <ERROR CLASS>) -> Unit>

mapper

val mapper: <ERROR CLASS>

optionsRequests

val optionsRequests: MutableMap<String, (Request, <ERROR CLASS>) -> Unit>

postRequests

val postRequests: MutableMap<String, (Request, <ERROR CLASS>) -> Unit>

putRequests

val putRequests: MutableMap<String, (Request, <ERROR CLASS>) -> Unit>

routes

val routes: MutableList<KVServer.() -> Unit>

serviceClass

val serviceClass: KClass<T>

Functions

addRoute

fun addRoute(method: RpcHttpMethod, path: String, handler: (Request, <ERROR CLASS>) -> Unit): Unit

applyRoutes

actual fun applyRoutes(k: KVServer): Unit

Applies all defined routes to the given server. Not used on the js platform.

bind

actual fun <RET> bind(function: suspend T.() -> RET, route: String?, method: RpcHttpMethod): Unit
actual fun <PAR, RET> bind(function: suspend T.(PAR) -> RET, route: String?, method: RpcHttpMethod): Unit
actual fun <PAR1, PAR2, RET> bind(function: suspend T.(PAR1, PAR2) -> RET, route: String?, method: RpcHttpMethod): Unit
actual fun <PAR1, PAR2, PAR3, RET> bind(function: suspend T.(PAR1, PAR2, PAR3) -> RET, route: String?, method: RpcHttpMethod): Unit
actual fun <PAR1, PAR2, PAR3, PAR4, RET> bind(function: suspend T.(PAR1, PAR2, PAR3, PAR4) -> RET, route: String?, method: RpcHttpMethod): Unit
actual fun <PAR1, PAR2, PAR3, PAR4, PAR5, RET> bind(function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5) -> RET, route: String?, method: RpcHttpMethod): Unit

Binds a given route with a function of the receiver.

actual fun bind(function: T.(String?, String?) -> List<<ERROR CLASS>>): Unit

Binds a given function of the receiver as a select options source

call

fun call(method: RpcHttpMethod, path: String, handler: (Request, <ERROR CLASS>) -> Unit): KVServer.() -> Unit

getCalls

open fun getCalls(): Map<String, Pair<String, RpcHttpMethod>>

Returns the map of defined paths.

getParameter

fun <T> getParameter(str: String?): T

Companion Object Properties

LOG

val LOG: <ERROR CLASS>