Documentation ¶
Index ¶
Constants ¶
View Source
const ( // EventArrivalTime is used to access the metadata stored on a // CloudEvent to measure the time difference between when an event is // received on a broker and before it is dispatched to the trigger function. // The format is an RFC3339 time in string format. For example: 2019-08-26T23:38:17.834384404Z. EventArrivalTime = "knativearrivaltime" )
View Source
const ( // V03TTLAttribute is the name of the CloudEvents 0.3 extension attribute used to store the // Broker's TTL (number of times a single event can reply through a Broker continuously). All // interactions with the attribute should be done through the GetTTL and SetTTL functions. V03TTLAttribute = "knativebrokerttl" )
Variables ¶
This section is empty.
Functions ¶
func GetTTL ¶ added in v0.6.1
func GetTTL(ctx cloudevents.EventContext) (interface{}, string)
GetTTL finds the TTL in the EventContext using a case insensitive comparison for the key. The second return param, is the case preserved key that matched. Depending on the encoding/transport, the extension case could be changed.
func SetTTL ¶
func SetTTL(ctx cloudevents.EventContext, ttl interface{}) (cloudevents.EventContext, error)
SetTTL sets the TTL into the EventContext. ttl should be a positive integer.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.