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

com.nfsdb.journal.TempPartition Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2014. Vlad Ilyushchenko
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.nfsdb.journal;

import com.nfsdb.journal.exceptions.JournalException;
import com.nfsdb.journal.locks.Lock;
import com.nfsdb.journal.locks.LockManager;
import org.joda.time.Interval;

import java.io.File;

public class TempPartition extends Partition {

    private final Lock lock;

    public TempPartition(Journal journal, Interval interval, int partitionIndex, String name) throws JournalException {
        super(journal, interval, partitionIndex, Journal.TX_LIMIT_EVAL, null);
        setPartitionDir(new File(journal.getLocation(), name), null);
        this.lock = LockManager.lockShared(getPartitionDir());
    }

    @Override
    public void close() {
        super.close();
        LockManager.release(lock);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy