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

org.wikidata.query.rdf.tool.utils.NullStreamDumper Maven / Gradle / Ivy

Go to download

Tools to sync Wikibase to RDF stores. Also contains overall integration tests that rely on everything else.

The newest version!
package org.wikidata.query.rdf.tool.utils;

import java.io.InputStream;

/**
 * StreamDumper which does not dump any content.
 */
public class NullStreamDumper implements StreamDumper {
    @Override
    public InputStream wrap(InputStream inputStream) {
        return inputStream;
    }

    @Override
    public void rotate() {
        // Null dumper does not dump and thus does not need to rotate any file.
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy