Documentation ¶
Overview ¶
Package channel implements the CloudEvent transport implementation using go chan.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ChanResponderResponse ¶
type Requester ¶
type Requester struct { Ch chan<- binding.Message Reply func(message binding.Message) (binding.Message, error) }
type Responder ¶
type Responder struct { In <-chan binding.Message Out chan<- ChanResponderResponse }
Responder implements Responder by receiving Messages from a channel and outputting the result in an output channel.
type SendReceiver ¶
type SendReceiver struct {
// contains filtered or unexported fields
}
SendReceiver is a reference implementation for using the CloudEvents binding integration.
func New ¶
func New() *SendReceiver
Click to show internal directories.
Click to hide internal directories.