events

package
v0.1.1 Latest Latest
Warning

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

Go to latest
Published: Dec 20, 2017 License: Apache-2.0 Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Event

type Event struct {
	Topic       string
	ContentType string
	Body        []byte
	ID          string
}

Event encapsulates an event that is transported via EventQueue

type Handler

type Handler func(event *Event)

Handler is a callback function used to handle received event

type Queue

type Queue interface {
	Publish(event *Event) error
	Subscribe(topic string, handler Handler) (Subscription, error)
	Close()
}

Queue is an abstraction over possible implementation of messaging

type Subscription

type Subscription interface {
	Unsubscribe() error
}

Subscription represents an active subscription within Queue. Subscription can be stopped by calling Unsubscribe()

Directories

Path Synopsis
Code generated by mockery v1.0.0
Code generated by mockery v1.0.0

Jump to

Keyboard shortcuts

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