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

com.fasterxml.sort.TempFileProvider Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy