Interceptor

fun interface Interceptor<ContextT>(source)

Represents an interceptor that can intercept and process a given context of type ContextT. This is a functional interface, allowing functional-style usage.

Parameters

ContextT

the type of the context to be intercepted.

Functions

Link copied to clipboard
abstract fun intercept(contextT: ContextT)

Intercepts the given context for custom processing or handling logic.