Select Git revision
datExtract.doctree
Dstore.java 490 B
public class Dstore {
// port to listen on
int port;
// controller's port to talk to
int cport;
// timeout in milliseconds
long timeout;
// where to store the data locally
String file_folder;
public Dstore (int port, int cport, long timeout, String file_folder) {
this.port = port;
this.cport = cport;
this.timeout = timeout;
this. file_folder = file_folder;
}
public static void main (String[] args) {
}
}