JobSharder is used to determine if a particular job is owned by this process
| 96 | |
| 97 | // JobSharder is used to determine if a particular job is owned by this process |
| 98 | type JobSharder interface { |
| 99 | // Owns is used to ask if a job, identified by a string, is owned by this process |
| 100 | Owns(string) bool |
| 101 | } |
| 102 | |
| 103 | // OwnsNothingSharder owns nothing. You do not want this developer on your team. |
| 104 | var OwnsNothingSharder = ownsNothingSharder{} |
no outgoing calls
no test coverage detected