Documentation ¶
Index ¶
- type Client
- func (e *Client) ExitError(ctx context.Context, errorType string) (*StatusResponse, error)
- func (e *Client) InitError(ctx context.Context, errorType string) (*StatusResponse, error)
- func (e *Client) NextEvent(ctx context.Context) (*NextEventResponse, error)
- func (e *Client) Register(ctx context.Context, filename string) (*RegisterResponse, error)
- type EventType
- type NextEventResponse
- type RegisterResponse
- type StatusResponse
- type Tracing
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client is a simple client for the Lambda Extensions API
func (*Client) ExitError ¶
ExitError reports an error to the platform before exiting. Call it when you encounter an unexpected failure
func (*Client) InitError ¶
InitError reports an initialization error to the platform. Call it when you registered but failed to initialize
type EventType ¶
type EventType string
EventType represents the type of events recieved from /event/next
type NextEventResponse ¶
type NextEventResponse struct { EventType EventType `json:"eventType"` DeadlineMs int64 `json:"deadlineMs"` RequestID string `json:"requestId"` InvokedFunctionArn string `json:"invokedFunctionArn"` Tracing Tracing `json:"tracing"` }
NextEventResponse is the response for /event/next
type RegisterResponse ¶
type RegisterResponse struct { FunctionName string `json:"functionName"` FunctionVersion string `json:"functionVersion"` Handler string `json:"handler"` }
RegisterResponse is the body of the response for /register
type StatusResponse ¶
type StatusResponse struct {
Status string `json:"status"`
}
StatusResponse is the body of the response for /init/error and /exit/error
Click to show internal directories.
Click to hide internal directories.