Documentation ¶
Index ¶
- Constants
- Variables
- func Dynamic(opts *cli.Options) error
- func NewClient(opts *cli.Options) (*redis.Client, error)
- func Read(opts *cli.Options, md *desc.MessageDescriptor) error
- func Relay(opts *cli.Options, relayCh chan interface{}, shutdownCtx context.Context) (relay.IRelayBackend, error)
- func Write(opts *cli.Options, md *desc.MessageDescriptor) error
- type Redis
- type Relayer
Constants ¶
View Source
const (
RetryReadInterval = 5 * time.Second
)
Variables ¶
View Source
var (
ErrMissingChannel = errors.New("You must specify at least one channel")
)
Functions ¶
func Dynamic ¶ added in v0.28.0
Dynamic starts up a new GRPC client connected to the dProxy service and receives a stream of outbound replay messages which are then written to the message bus.
func Relay ¶
func Relay(opts *cli.Options, relayCh chan interface{}, shutdownCtx context.Context) (relay.IRelayBackend, error)
Relay sets up a new RedisPubSub relayer
func Write ¶
func Write(opts *cli.Options, md *desc.MessageDescriptor) error
Write is the entry point function for performing write operations in RedisPubSub.
This is where we verify that the passed args and flags combo makes sense, attempt to establish a connection, parse protobuf before finally attempting to perform the write.
Types ¶
type Redis ¶
type Redis struct { Options *cli.Options Client *redis.Client MsgDesc *desc.MessageDescriptor // contains filtered or unexported fields }
Click to show internal directories.
Click to hide internal directories.