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

org.elasticsearch.testframework.DummyShardLock Maven / Gradle / Ivy

package org.elasticsearch.testframework;

import org.elasticsearch.env.ShardLock;
import org.elasticsearch.index.shard.ShardId;

/*
 * A ShardLock that does nothing... for tests only
 */
public class DummyShardLock extends ShardLock {

    public DummyShardLock(ShardId id) {
        super(id);
    }

    @Override
    protected void closeInternal() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy