You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
207 B

  1. package worker
  2. type Job interface {
  3. Err() error
  4. Data() []byte
  5. Fn() string
  6. SendWarning(data []byte)
  7. SendData(data []byte)
  8. UpdateStatus(numerator, denominator int)
  9. Handle() string
  10. UniqueId() string
  11. }