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

com.bigdata.rdf.load.IStatementBufferFactory Maven / Gradle / Ivy

package com.bigdata.rdf.load;

import org.openrdf.model.Statement;

import com.bigdata.rdf.rio.IStatementBuffer;
import com.bigdata.rdf.rio.StatementBuffer;

/**
 * A factory for {@link StatementBuffer}s.
 * 
 * @author Bryan Thompson
 * @version $Id$
 */
public interface IStatementBufferFactory {

    /**
     * Return the {@link StatementBuffer} to be used for a task (some factories
     * will recycle statement buffers, but that is not necessary or implied).
     */
    public IStatementBuffer newStatementBuffer();
    
}