masterTaskHandle assigns tasks to clients.
| 18 | |
| 19 | // masterTaskHandle assigns tasks to clients. |
| 20 | type masterTaskHandle struct { |
| 21 | Distributor |
| 22 | } |
| 23 | |
| 24 | func (mth *masterTaskHandle) Process(receive *teleport.NetData) *teleport.NetData { |
| 25 | b := result.Ret(json.Marshal(mth.Send(mth.CountNodes()))) |
nothing calls this directly
no outgoing calls
no test coverage detected