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

io.datakernel.multilog.PartitionAndFile Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package io.datakernel.multilog;

public final class PartitionAndFile {
	private final String logPartition;
	private final LogFile logFile;

	public PartitionAndFile(String logPartition, LogFile logFile) {
		this.logPartition = logPartition;
		this.logFile = logFile;
	}

	public String getLogPartition() {
		return logPartition;
	}

	public LogFile getLogFile() {
		return logFile;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy