com.fasterxml.sort.TempFileProvider 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.File;
import java.io.IOException;
/**
* Interface used for object that can handle constructing of temporary files that are
* needed during sort and non-final merge phases.
*
* @author tatu
*
*/
public interface TempFileProvider
{
public File provide() throws IOException;
}