Files
XPlaneConnectCSP/Java/src/discovery/DiscoveryConnectionCallback.java
2019-06-01 12:52:13 -07:00

15 lines
447 B
Java

package gov.nasa.xpc.discovery;
import gov.nasa.xpc.XPlaneConnect;
public interface DiscoveryConnectionCallback {
/**
* Helper callback called when a 1st XPlanePlugin is discovered. When the 1st packet is received, an XPlaneConnect
* instance is created and the discovery is stopped.
*
* @param xpc The XPlaneConnect instance configured with the discovered
*/
void onConnectionEstablished(XPlaneConnect xpc);
}