`asyncHandler(this::ping)` Will complain that KFun...
# coroutines
j
asyncHandler(this::ping)
Will complain that KFunction<RoutingContext, Unit> doesnt match suspend (RoutingContext) -> Unit
j
Suspending function reference is not really supported yet. You have to call
asyncHandler { ping() }
j
Ah
j
Thansk