Created
April 30, 2020 13:57
-
-
Save singhrahuldps/e0e1f7a40e6ee2298c2ff175b6ec6500 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface CommunicationDriver { | |
void connectDevice(String deviceName); | |
default void disconnectDevice() { | |
System.out.println("Device disconnected"); | |
} | |
void sendFile(String filePath); | |
void receiveFile(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment