public SyncTask(EventBus bus, ListeningExecutorService exec, Config config) {
this.bus = bus;
this.exec = exec;
this.config = config;
this.tempPath = new File(config.syncDir, ".gssync");
this.client = new Client();
this.concurrentJobsSemaphore = new Semaphore(config.numConcurrent);
}