org.neo4j.kernel.impl.transaction.log.TestLogEntryReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wal-test-utils Show documentation
Show all versions of wal-test-utils Show documentation
A set of write-ahead logging utilities used by tests.
The newest version!
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [https://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.kernel.impl.transaction.log;
import org.neo4j.configuration.Config;
import org.neo4j.kernel.BinarySupportedKernelVersions;
import org.neo4j.kernel.impl.api.TestCommandReaderFactory;
import org.neo4j.kernel.impl.transaction.log.entry.LogEntryReader;
import org.neo4j.kernel.impl.transaction.log.entry.VersionAwareLogEntryReader;
public final class TestLogEntryReader {
private TestLogEntryReader() {}
public static LogEntryReader logEntryReader() {
return logEntryReader(new BinarySupportedKernelVersions(Config.defaults()));
}
public static LogEntryReader logEntryReader(BinarySupportedKernelVersions supportedKernelVersions) {
return new VersionAwareLogEntryReader(TestCommandReaderFactory.INSTANCE, supportedKernelVersions);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy