Package org.jruby.rack.servlet

Examples of org.jruby.rack.servlet.RewindableInputStream


        catch (IOException e) { /* ignore */ }
    }
   
    private void setInput(InputStream input) {
        if ( input != null && rewindable && getRewindMethod(input) == null ) {
            input = new RewindableInputStream(input);
        }
        this.input = input;
    }
View Full Code Here

TOP

Related Classes of org.jruby.rack.servlet.RewindableInputStream

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.