Callback

fun interface Callback<T>

A functional interface representing a callback that takes a result of type T.

Parameters

T

The type of the result.

Inheritors

Functions

Link copied to clipboard
abstract operator fun invoke(result: T)

Invokes the callback with the provided result.