pub trait PushWorkHandler: Send + Sync { // Required method fn push_work_all(&self, payload: String) -> Result<(), Error>; }
Interface that can handle requests to push job for workers
push the same work package for all workers (payload: json of pow-specific set of work specification)
payload