Documentation
¶
Index ¶
Constants ¶
View Source
const ( // HTTPVerb is an dapr http channel verb HTTPVerb = "http.verb" // HTTPStatusCode is an dapr http channel status code HTTPStatusCode = "http.status_code" // Get is an HTTP Get method Get = "GET" // Post is an Post Get method Post = "POST" // Delete is an HTTP Delete method Delete = "DELETE" // Put is an HTTP Put method Put = "PUT" // Options is an HTTP OPTIONS method Options = "OPTIONS" // QueryString is the query string passed by the request QueryString = "http.query_string" // ContentType is the header for Content-Type ContentType = "Content-Type" )
Variables ¶
This section is empty.
Functions ¶
func CreateLocalChannel ¶
func CreateLocalChannel(port, maxConcurrency int) (channel.AppChannel, error)
CreateLocalChannel creates an HTTP AppChannel nolint:gosec
Types ¶
type Channel ¶
type Channel struct {
// contains filtered or unexported fields
}
Channel is an HTTP implementation of an AppChannel
func (*Channel) InvokeMethod ¶
func (h *Channel) InvokeMethod(invokeRequest *channel.InvokeRequest) (*channel.InvokeResponse, error)
InvokeMethod invokes user code via HTTP
Click to show internal directories.
Click to hide internal directories.