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

com.bazaarvoice.emodb.hadoop.io.SplitPath Maven / Gradle / Ivy

There is a newer version: 6.2.3
Show newest version
package com.bazaarvoice.emodb.hadoop.io;

import org.apache.hadoop.fs.Path;

/**
 * POJO to represent the path and size for a split.
 */
public class SplitPath {
    private final Path _path;
    private final long _length;

    public SplitPath(Path path, long length) {
        _path = path;
        _length = length;
    }

    public Path getPath() {
        return _path;
    }

    public long getLength() {
        return _length;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy