com.sshtools.javardp.io.IO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdp Show documentation
Show all versions of rdp Show documentation
Swing RDP component based on ProperJavaRDP with some modifications to allow multiple sessions within the same runtime, and to fix some bugs and inconsistencies with newer Windows versions.
The newest version!
package com.sshtools.javardp.io;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
public interface IO {
void closeIO() throws IOException;
InputStream getInputStream() throws IOException;
OutputStream getOutputStream() throws IOException;
byte[] getPublicKey();
String getAddress();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy