github.com/loov/combiner@v0.1.0/extcombiner/batcher.go (about)

     1  package extcombiner
     2  
     3  // Batcher combines different operations together and executes them.
     4  type Batcher interface {
     5  	Start()
     6  	Do(op interface{})
     7  	Finish()
     8  }