MCPcopy Index your code
hub / github.com/aws/aws-lambda-go / StartHandlerFunc

Function StartHandlerFunc

lambda/entry_generic.go:19–21  ·  view source on GitHub ↗

StartHandlerFunc is the same as StartWithOptions except that it takes a generic input so that the function signature can be validated at compile time.

(handler H, options ...Option)

Source from the content-addressed store, hash-verified

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.
19func StartHandlerFunc[TIn any, TOut any, H HandlerFunc[TIn, TOut]](handler H, options ...Option) {
20 start(newHandler(handler, options...))
21}

Callers 2

StartFunction · 0.92
TestStartHandlerFuncFunction · 0.85

Calls 2

startFunction · 0.85
newHandlerFunction · 0.85

Tested by 1

TestStartHandlerFuncFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…