Skip to content
Snippets Groups Projects
Select Git revision
  • 2ab3626518b694891e508267ddc1f2b89f993c03
  • BaseButton default
  • main
  • linux2
  • linux
  • newboxes
  • offlineupdates
  • qol
  • cryptotest2
  • css-cards
  • crypto-test
  • draganddrop
  • height3
  • height
  • zindex
  • connection2
  • v-forupdate
  • connections
  • v-for
  • organise-forlarger
  • kebabcase
  • lowercase
22 results

OnBoard.vue

Blame
  • 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) {
    
        }
    }