pubsub

package module
v0.0.0-...-4aaa5b9 Latest Latest
Warning

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

Go to latest
Published: Aug 23, 2014 License: MIT Imports: 1 Imported by: 1

README

pubsub

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Callback

type Callback func(data []byte)

type CallbackSync

type CallbackSync func(data []byte) ([]byte, error)

type PubSub

type PubSub interface {
	Subscribe(topic string, callback Callback) (Subscription, error)
	SubscribeSync(topic string, callback CallbackSync) (Subscription, error)
	Publish(topic string, data []byte) error
	PublishSync(topic string, data []byte, timeout time.Duration) ([]byte, error)
	Close()
}

type Subscription

type Subscription interface {
	Unsubscribe() error
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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