Package org.chaidb.db.log.logrecord

Examples of org.chaidb.db.log.logrecord.FilesDeleteLogRecord


        int deleteFilesNumber = deleteFiles.size();
        if (deleteFilesNumber <= 0) {
            return;
        }

        FilesDeleteLogRecord logRec = new FilesDeleteLogRecord(deleteFiles, txnId);
        logRec.log();

        for (int i = 0; i < deleteFilesNumber; i++) {
            String filePath = (String) deleteFiles.get(i);
            File deleteFile = new File(filePath);
            if (deleteFile.isFile()) {
View Full Code Here

TOP

Related Classes of org.chaidb.db.log.logrecord.FilesDeleteLogRecord

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.