io.datakernel.multilog.PartitionAndFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datakernel-multilog Show documentation
Show all versions of datakernel-multilog Show documentation
Package provides tools for working with logs stored on different partitions.
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