FnHandler

fun interface FnHandler<In, Ctx, Out> : Function2<In, Ctx, Out> (source)

Handler for a Serverless function invocation.

Functions

Link copied to clipboard
Link copied to clipboard
abstract operator fun invoke(p1: In, p2: Ctx): Out