request

package
v0.0.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 7, 2022 License: Apache-2.0 Imports: 7 Imported by: 9

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CoordinatedRequest

type CoordinatedRequest struct {
	Method       string            `json:"method"`
	URL          string            `json:"url"`
	ID           string            `json:"request_id"`
	Body         []byte            `json:"body"`
	Headers      map[string]string `json:"headers"`
	RespHeaders  map[string]string `json:"resp_headers"`
	Params       map[string]string `json:"params"`
	State        map[string][]byte `json:"state"`
	SequenceJSON []byte            `json:"sequence_json,omitempty"`
	// contains filtered or unexported fields
}

CoordinatedRequest represents a request whose fulfillment can be coordinated across multiple hosts and is serializable to facilitate interoperation with Wasm Modules and transmissible over the wire

func FromJSON

func FromJSON(jsonBytes []byte) (*CoordinatedRequest, error)

FromJSON unmarshalls a CoordinatedRequest from JSON

func FromVKRequest

func FromVKRequest(r *http.Request, ctx *vk.Ctx) (*CoordinatedRequest, error)

FromVKRequest creates a CoordinatedRequest from an VK request handler

func (*CoordinatedRequest) BodyField

func (c *CoordinatedRequest) BodyField(key string) (string, error)

BodyField returns a field from the request body as a string

func (*CoordinatedRequest) SetBodyField

func (c *CoordinatedRequest) SetBodyField(key, val string) error

SetBodyField sets a field in the JSON body to a new value

func (*CoordinatedRequest) ToJSON

func (c *CoordinatedRequest) ToJSON() ([]byte, error)

ToJSON returns a JSON representation of a CoordinatedRequest

func (*CoordinatedRequest) UseSuborbitalHeaders

func (c *CoordinatedRequest) UseSuborbitalHeaders(r *http.Request, ctx *vk.Ctx) error

UseSuborbitalHeaders adds the values in the state and params headers JSON to the CoordinatedRequest's State and Params

type CoordinatedResponse

type CoordinatedResponse struct {
	Output      []byte            `json:"output"`
	RespHeaders map[string]string `json:"resp_headers"`
}

func ResponseFromJSON

func ResponseFromJSON(jsonBytes []byte) (*CoordinatedResponse, error)

ResponseFromJSON unmarshalls a CoordinatedResponse from JSON

func (*CoordinatedResponse) ToJSON

func (c *CoordinatedResponse) ToJSON() ([]byte, error)

ToJSON returns a JSON representation of a CoordinatedRequest

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL