Handler is a function alias for the underlying logic the Actor should call.
func(ctx context.Context, input Input) (Output, error)
| 21 | |
| 22 | // Handler is a function alias for the underlying logic the Actor should call. |
| 23 | type Handler[Input, Output any] func(ctx context.Context, input Input) (Output, error) |
| 24 | |
| 25 | // Actor is a serializing wrapper that runs a function in a background goroutine. |
| 26 | // Whenever the Call method is invoked, a message is sent to the actor's inbox and then |
nothing calls this directly
no outgoing calls
no test coverage detected