Package com.volantis.shared.io

Examples of com.volantis.shared.io.CachingInputStream


        return cached.getContentStyle();
    }

    public InputStream getInputStream() throws IOException {
        if (cachingInputStream == null) {
            cachingInputStream = new CachingInputStream(cached.getInputStream());
        }
        return cachingInputStream;
    }
View Full Code Here


        if (stepType.isFirst()) {
            if (logger.isDebugEnabled()) {
                // dump the input to the first step for debugging
                logger.debug("Input to migrator");
                CachingInputStream is = new CachingInputStream(input);
                dumpStream(is);
                input = is.getCacheInputStream();
            }
        } else {
            // disable input validation on all steps except the first
            inputReaderFactory.disableValidation();
        }
View Full Code Here

TOP

Related Classes of com.volantis.shared.io.CachingInputStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.