vars.go 163 B

12345678
  1. package executors
  2. import "time"
  3. const defaultFlushInterval = time.Second
  4. // Execute defines the method to execute tasks.
  5. type Execute func(tasks []interface{})