com.lambdazen.bitsy.store.BackupJob Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bitsy Show documentation
Show all versions of bitsy Show documentation
Bitsy v3 is a small, fast, embeddable, durable in-memory graph database that is compatible with Tinkerpop3
package com.lambdazen.bitsy.store;
import java.nio.file.Path;
import com.lambdazen.bitsy.BitsyException;
public class BackupJob extends JobWithCountDownLatch implements IVeReorgJob {
private Path backupDir;
private BitsyException bex;
public BackupJob(Path backupDir) {
this.backupDir = backupDir;
}
public Path getBackupDir() {
return backupDir;
}
public BitsyException getException() {
return bex;
}
public void setException(BitsyException bex) {
this.bex = bex;
}
}