Package org.chaidb.db.log.logrecord

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


        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
Copyright © 2018 www.massapi.com. 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.