pubsub

package
v0.7.1 Latest Latest
Warning

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

Go to latest
Published: Jan 21, 2024 License: GPL-3.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Msg

type Msg struct {
	Key     string
	Payload string
}

type PqPubSub

type PqPubSub struct {
	Notify chan Msg

	L *pq.Listener

	Log log.Logger
	// contains filtered or unexported fields
}

func NewPQ

func NewPQ(dsn string) (*PqPubSub, error)

func (*PqPubSub) Close

func (l *PqPubSub) Close() error

func (*PqPubSub) Listener

func (l *PqPubSub) Listener() chan Msg

func (*PqPubSub) Publish

func (l *PqPubSub) Publish(key, payload string) error

func (*PqPubSub) Subscribe

func (l *PqPubSub) Subscribe(_ context.Context, key string) error

func (*PqPubSub) Unsubscribe

func (l *PqPubSub) Unsubscribe(_ context.Context, key string) error

type PubSub

type PubSub interface {
	Subscribe(ctx context.Context, key string) error
	Unsubscribe(ctx context.Context, key string) error
	Publish(key, payload string) error
	Listener() chan Msg
	Close() error
}

Jump to

Keyboard shortcuts

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