All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lambdazen.bitsy.store.BackupJob Maven / Gradle / Ivy

Go to download

Bitsy v3 is a small, fast, embeddable, durable in-memory graph database that is compatible with Tinkerpop3

There is a newer version: 3.6.2
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy