Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ErrorHandler ¶
type ErrorHandler func(msg *queue.DecodedSSVMessage, err error) error
ErrorHandler func that handles an error for a specific message
type MsgHandler ¶
type MsgHandler func(msg *queue.DecodedSSVMessage) error
MsgHandler func that receive message.SSVMessage to handle
type Worker ¶
type Worker struct {
// contains filtered or unexported fields
}
Worker listen to queue and process the messages
func (*Worker) TryEnqueue ¶
func (w *Worker) TryEnqueue(msg *queue.DecodedSSVMessage) bool
TryEnqueue tries to enqueue a job to the given job channel. Returns true if the operation was successful, and false if enqueuing would not have been possible without blocking. Job is not enqueued in the latter case.
func (*Worker) UseErrorHandler ¶
func (w *Worker) UseErrorHandler(errHandler ErrorHandler)
UseErrorHandler registers an error handler
func (*Worker) UseHandler ¶
func (w *Worker) UseHandler(handler MsgHandler)
UseHandler registers a message handler
Click to show internal directories.
Click to hide internal directories.