com.fasterxml.sort.DataWriter 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.IOException;
public abstract class DataWriter
{
public abstract void writeEntry(T item) throws IOException;
public abstract void close() throws IOException;
}