| 32 | import java.util.List; |
| 33 | |
| 34 | public interface Discovery extends Runnable { |
| 35 | |
| 36 | /** |
| 37 | * Start discovery service |
| 38 | * |
| 39 | * @throws Exception |
| 40 | */ |
| 41 | void start() throws Exception; |
| 42 | |
| 43 | /** |
| 44 | * Stop discovery service |
| 45 | */ |
| 46 | void stop() throws Exception; |
| 47 | |
| 48 | /** |
| 49 | * Return the list of discovered ports. |
| 50 | * |
| 51 | * @return |
| 52 | */ |
| 53 | List<BoardPort> listDiscoveredBoards(); |
| 54 | List<BoardPort> listDiscoveredBoards(boolean complete); |
| 55 | |
| 56 | } |
no outgoing calls
no test coverage detected