API tweaks
This commit is contained in:
parent
2f684bb48d
commit
20cd5d48ed
4
stage.go
4
stage.go
@ -51,7 +51,7 @@ func (s *stage) chain(p Plugin) {
|
|||||||
fin, _ := p.(Finalizer)
|
fin, _ := p.(Finalizer)
|
||||||
|
|
||||||
if init != nil {
|
if init != nil {
|
||||||
if err := init.Initialize(); err != nil {
|
if err := init.Initialize(s); err != nil {
|
||||||
s.gs.fault(nil, err)
|
s.gs.fault(nil, err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -63,7 +63,7 @@ func (s *stage) chain(p Plugin) {
|
|||||||
go func() {
|
go func() {
|
||||||
defer wg.Done()
|
defer wg.Done()
|
||||||
for f := range s.input {
|
for f := range s.input {
|
||||||
if proc == nil || accept != nil && !accept.Accept(f) {
|
if proc == nil || accept != nil && !accept.Accept(s, f) {
|
||||||
s.output <- f
|
s.output <- f
|
||||||
} else {
|
} else {
|
||||||
f.rewind()
|
f.rewind()
|
||||||
|
4
types.go
4
types.go
@ -87,11 +87,11 @@ func (e *Error) Error() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type Initializer interface {
|
type Initializer interface {
|
||||||
Initialize() error
|
Initialize(ctx Context) error
|
||||||
}
|
}
|
||||||
|
|
||||||
type Accepter interface {
|
type Accepter interface {
|
||||||
Accept(file File) bool
|
Accept(ctx Context, file File) bool
|
||||||
}
|
}
|
||||||
|
|
||||||
type Finalizer interface {
|
type Finalizer interface {
|
||||||
|
Loading…
Reference in New Issue
Block a user