diff options
author | Robert Jaros <rjaros@finn.pl> | 2020-04-15 20:16:39 +0200 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2020-04-15 20:16:39 +0200 |
commit | 6eca49df30836633cb584e2a62301825fab6f883 (patch) | |
tree | 579a09dd43c9a33f2fa7237f993a093748c25828 /kvision-modules/kvision-server-spring-boot/src/commonMain/kotlin/pl | |
parent | 07f2a729431ac4e36f6c0573630870b64e4c1705 (diff) | |
download | kvision-6eca49df30836633cb584e2a62301825fab6f883.tar.gz kvision-6eca49df30836633cb584e2a62301825fab6f883.tar.bz2 kvision-6eca49df30836633cb584e2a62301825fab6f883.zip |
Increase the number of parameters for server side interface methods
Diffstat (limited to 'kvision-modules/kvision-server-spring-boot/src/commonMain/kotlin/pl')
-rw-r--r-- | kvision-modules/kvision-server-spring-boot/src/commonMain/kotlin/pl/treksoft/kvision/remote/KVServiceManager.kt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/kvision-modules/kvision-server-spring-boot/src/commonMain/kotlin/pl/treksoft/kvision/remote/KVServiceManager.kt b/kvision-modules/kvision-server-spring-boot/src/commonMain/kotlin/pl/treksoft/kvision/remote/KVServiceManager.kt index 19da13c0..3ba4998d 100644 --- a/kvision-modules/kvision-server-spring-boot/src/commonMain/kotlin/pl/treksoft/kvision/remote/KVServiceManager.kt +++ b/kvision-modules/kvision-server-spring-boot/src/commonMain/kotlin/pl/treksoft/kvision/remote/KVServiceManager.kt @@ -104,6 +104,18 @@ expect open class KVServiceManager<T : Any>(serviceClass: KClass<T>) { ) /** + * Binds a given route with a function of the receiver. + * @param function a function of the receiver + * @param method a HTTP method + * @param route a route + */ + protected inline fun <reified PAR1, reified PAR2, reified PAR3, reified PAR4, reified PAR5, reified PAR6, reified RET> bind( + noinline function: suspend T.(PAR1, PAR2, PAR3, PAR4, PAR5, PAR6) -> RET, + method: HttpMethod = HttpMethod.POST, + route: String? = null + ) + + /** * Binds a given function of the receiver as a tabulator component source * @param function a function of the receiver */ |