stash/vendor/github.com/modern-go/concurrent/executor.go
bnkai 9b1518beae
Export performance optimization (#475)
* recreate metadata path if needed, before exporting data
2020-04-24 12:52:21 +10:00

7 lines
No EOL
104 B
Go

package concurrent
import "context"
type Executor interface {
Go(handler func(ctx context.Context))
}