MCPcopy
hub / github.com/arduino/Arduino / Discovery

Interface Discovery

arduino-core/src/cc/arduino/packages/Discovery.java:34–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32import java.util.List;
33
34public 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}

Callers 15

DiscoveryManagerMethod · 0.65
startPollingMethod · 0.65
execMethod · 0.65
MessageSiphonMethod · 0.65
onUpdatePressedMethod · 0.65
onInstallPressedMethod · 0.65
onRemovePressedMethod · 0.65
onUpdatePressedMethod · 0.65
DiscoveryManagerMethod · 0.65
FilterJTextFieldMethod · 0.65
spawnTimerMethod · 0.65
closeMethod · 0.65

Implementers 3

NetworkDiscoveryarduino-core/src/cc/arduino/packages/d
PluggableDiscoveryarduino-core/src/cc/arduino/packages/d
SerialDiscoveryarduino-core/src/cc/arduino/packages/d

Calls

no outgoing calls

Tested by

no test coverage detected