com.codetaco.funnel.columns.ColumnWriter Maven / Gradle / Ivy
package com.codetaco.funnel.columns;
import java.io.IOException;
/**
*
* ColumnWriter interface.
*
*
* @author Chris DeGreef [email protected]
*/
public interface ColumnWriter
{
/**
*
* write.
*
*
* @param sourceBytes an array of byte.
* @param off a int.
* @param len a int.
* @throws java.io.IOException if any.
*/
public void write(byte[] sourceBytes, int off, int len) throws IOException;
}