Files
XPlaneConnectCSP/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/DiscoveryConnectionCallback.java
2025-01-24 09:33:57 -05:00

15 lines
467 B
Java

package CognitiveModel.ModelFiles.XPCdependencies;
import CognitiveModel.ModelFiles.*;
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);
}