kvision
Toggle table of contents
8.2.0
jvm
Platform filter
jvm
Switch theme
Search in API
kvision
kvision-common-remote
/
io.kvision.remote
/
RouteMapRegistry
Route
Map
Registry
jvm
interface
RouteMapRegistry
<
T
>
(
source
)
Stores a mapping from an HTTP-method+path to a handler
Members
Functions
add
Route
Link copied to clipboard
jvm
abstract
fun
addRoute
(
method
:
HttpMethod
,
path
:
String
,
handler
:
T
)
as
Sequence
Link copied to clipboard
jvm
abstract
fun
asSequence
(
)
:
Sequence
<
RouteMapEntry
<
T
>
>
abstract
fun
asSequence
(
method
:
HttpMethod
)
:
Sequence
<
RouteMapEntry
<
T
>
>
find
Handler
Link copied to clipboard
jvm
abstract
fun
findHandler
(
method
:
HttpMethod
,
path
:
String
)
:
T
?