-
Notifications
You must be signed in to change notification settings - Fork 370
/
Copy pathprocessor.go
27 lines (21 loc) · 850 Bytes
/
processor.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package backends
import (
"github.com/flashmob/go-guerrilla/envelope"
)
// Our processor is defined as something that processes the envelope and returns a result and error
type Processor interface {
Process(*envelope.Envelope) (BackendResult, error)
}
// Signature of DoFunc
type ProcessorFunc func(*envelope.Envelope) (BackendResult, error)
// Make ProcessorFunc will satisfy the Processor interface
func (f ProcessorFunc) Process(e *envelope.Envelope) (BackendResult, error) {
return f(e)
}
// DefaultProcessor is a undecorated worker that does nothing
// Notice MockClient has no knowledge of the other decorators that have orthogonal concerns.
type DefaultProcessor struct{}
// do nothing except return the result
func (w DefaultProcessor) Process(e *envelope.Envelope) (BackendResult, error) {
return NewBackendResult("200 OK"), nil
}