11 lines
166 B
Go
11 lines
166 B
Go
|
|
package processor
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Processor interface {
|
||
|
|
ProcessTasks(ctx context.Context) error
|
||
|
|
SendResults(ctx context.Context, chanLen uint) error
|
||
|
|
}
|