
remote.server.InputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of remote4j Show documentation
Show all versions of remote4j Show documentation
Thin functional layer on top of RMI.
package remote.server;
import java.io.IOException;
import java.io.ObjectInputStream;
public class InputStream extends ObjectInputStream {
private final RemoteFactory factory;
public InputStream(final java.io.InputStream in, final RemoteFactory factory) throws IOException {
super(in);
this.factory = factory;
}
public RemoteFactory getFactory() {
return factory;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy