Skip to content
Snippets Groups Projects
Select Git revision
  • df2eea94ba7576549d89eb5d0a636f85e3c813cf
  • master default protected
2 results

setup.R

Blame
  • Forked from SERG / woRkflow
    Source project has a limited visibility.
    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) {
    
        }
    }