receipts

package
v0.16.0 Latest Latest
Warning

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

Go to latest
Published: Mar 8, 2020 License: BSD-2-Clause Imports: 11 Imported by: 0

Documentation

Overview

Package receipts implements XEP-0184: Message Delivery Receipts.

Index

Constants

View Source
const (
	// NS is the XML namespace used by message delivery receipts.
	// It is provided as a convenience.
	NS = "urn:xmpp:receipts"
)

Variables

This section is empty.

Functions

func Handle

func Handle(h *Handler) mux.Option

Handle returns an option that registers a Handler for entity time requests.

Types

type Handler

type Handler struct {
	// contains filtered or unexported fields
}

Handler listens for incoming message receipts and matches them to outgoing messages sent with SendMessage or SendMessageElement.

func (*Handler) HandleMessage

func (h *Handler) HandleMessage(msg stanza.Message, t xmlstream.TokenReadEncoder) error

HandleMessage implements mux.MessageHandler and responds to requests and responses for message delivery receipts.

func (*Handler) SendMessage

func (h *Handler) SendMessage(ctx context.Context, s *xmpp.Session, r xml.TokenReader) error

SendMessage transmits the first element read from the provided token reader over the session if the element is a message stanza, otherwise it returns an error. SendMessage adds a requst for a message receipt and an ID if one does not already exist.

If the context is closed before the message delivery receipt is received, SendMessage immediately returns the context error. Any response received at a later time will no be associated with the original request, but can still be handled by the Handler. If the returned error is nil, receipt of the message was successfully acknowledged.

SendMessage is safe for concurrent use by multiple goroutines.

func (*Handler) SendMessageElement

func (h *Handler) SendMessageElement(ctx context.Context, s *xmpp.Session, payload xml.TokenReader, msg stanza.Message) error

SendMessageElement is like SendMessage except that it wraps the payload in the message element derived from msg. For more information, see SendMessage.

SendMessageElement is safe for concurrent use by multiple goroutines.

Jump to

Keyboard shortcuts

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