DetectionSender sends detection responses for one request.
| 27 | |
| 28 | // DetectionSender sends detection responses for one request. |
| 29 | type DetectionSender interface { |
| 30 | SendProposals(*plugin_pb.DetectionProposals) error |
| 31 | SendComplete(*plugin_pb.DetectionComplete) error |
| 32 | SendActivity(*plugin_pb.ActivityEvent) error |
| 33 | } |
| 34 | |
| 35 | // ExecutionSender sends execution progress/completion responses for one request. |
| 36 | type ExecutionSender interface { |
no outgoing calls
no test coverage detected