Handler

fun interface Handler<T>

Functional interface for handling logic on a given context.

Parameters

T

the type of the context

Inheritors

Functions

Link copied to clipboard
abstract fun handle(context: T): Mono<Void>

Method to execute the handling logic.