AsyncInterceptor

Represents an asynchronous interceptor interface that processes a given context type. This interface is designed to be implemented to provide custom interceptor logic that can operate asynchronously using a CompletableFuture.

Type Parameters

ContextT

The type of the context object that the interceptor processes.

Functions

Link copied to clipboard
abstract fun intercept(contextT: ContextT): CompletableFuture<Boolean>

0 Intercepts the given context and performs asynchronous processing.