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

com.codetaco.funnel.provider.VariableLengthInputCache Maven / Gradle / Ivy

There is a newer version: 3.0.5
Show newest version
package com.codetaco.funnel.provider;

import java.io.IOException;
import java.io.InputStream;

import com.codetaco.funnel.parameters.FunnelContext;

/**
 * 

* VariableLengthInputCache class. *

* * @author Chris DeGreef [email protected] */ public class VariableLengthInputCache extends AbstractInputCache { /** *

* Constructor for VariableLengthInputCache. *

* * @param _context a {@link com.codetaco.funnel.parameters.FunnelContext} * object. * @param _source a {@link java.io.InputStream} object. * @throws java.io.IOException if any. */ public VariableLengthInputCache(final FunnelContext _context, final InputStream _source) throws IOException { super(_context, _source); } @Override void postOpenVerification() throws IOException { // nothing to do here } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy