All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sshtools.javardp.io.IO Maven / Gradle / Ivy

Go to download

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