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

com.codetaco.funnel.columns.ColumnWriter Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy