Documentation ¶
Index ¶
Constants ¶
View Source
const (
NamespaceSep = "."
)
Variables ¶
This section is empty.
Functions ¶
func NamespaceTopic ¶
Types ¶
type ConsumptionCode ¶
type ConsumptionCode int32
const ( // ConsumeAck "Success, let's keep going!" ConsumeAck ConsumptionCode = iota // ConsumeAckFinal "Success, but I'm done consuming!" ConsumeAckFinal // ConsumeNackTransientFailure "Failure, but I'd like to try again! Send me that message again." ConsumeNackTransientFailure // ConsumeNackPersistentFailure "Failure, I give up on this message! Let's move on." ConsumeNackPersistentFailure )
type DeliverySemantics ¶
type DeliverySemantics string
const ( AtLeastOnce DeliverySemantics = "at-least-once" AtMostOnce DeliverySemantics = "at-most-once" Unset DeliverySemantics = "" )
Click to show internal directories.
Click to hide internal directories.