Package-level declarations

Types

Link copied to clipboard

Http4k app loader - instantiate the application from the environment config

Link copied to clipboard

Convenience DSL for constructing a converting polymorphic FnHandler

Link copied to clipboard
fun interface FnFilter<In, Ctx, Out> : Function1<FnHandler<In, Ctx, Out>, FnHandler<In, Ctx, Out>>
Link copied to clipboard
fun interface FnHandler<In, Ctx, Out> : Function2<In, Ctx, Out>

Handler for a Serverless function invocation.

Link copied to clipboard

Loads a configured function from the Serverless environment.

Link copied to clipboard
data class FnTransaction<In, Out>(val request: In, val response: Out, val duration: Duration, val labels: Map<String, String> = emptyMap())
Link copied to clipboard
Link copied to clipboard
fun interface ServerlessConfig<Ctx>

Launching point for custom Serverless runtimes.

Link copied to clipboard

Functions

Link copied to clipboard