MCPcopy
hub / github.com/aws/aws-lambda-go / HandlerFunc

Interface HandlerFunc

lambda/entry_generic.go:13–15  ·  view source on GitHub ↗

HandlerFunc represents a valid input with two arguments and two returns as described by Start

Source from the content-addressed store, hash-verified

11
12// HandlerFunc represents a valid input with two arguments and two returns as described by Start
13type HandlerFunc[TIn, TOut any] interface {
14 func(context.Context, TIn) (TOut, error)
15}
16
17// StartHandlerFunc is the same as StartWithOptions except that it takes a generic input
18// so that the function signature can be validated at compile time.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…