com.fasterxml.sort.DataWriterFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-merge-sort Show documentation
Show all versions of java-merge-sort Show documentation
Basic configurable disk-backed N-way merge sort
package com.fasterxml.sort;
import java.io.*;
public abstract class DataWriterFactory
{
public abstract DataWriter constructWriter(OutputStream out) throws IOException;
}