Package com.github.kevwil.aspen.io

Examples of com.github.kevwil.aspen.io.RubyIORackInput


    public DefaultRackEnvironment( final Ruby runtime, final Request request )
    {
        _runtime = runtime;
        _request = request;
        _stream = new ChannelBufferInputStream( _request.getBody() );
        RubyIORackInput input = new RubyIORackInput( _runtime );
        input.setBuffer( _request.getBody() );
        setRackInput( input );
    }
View Full Code Here

TOP

Related Classes of com.github.kevwil.aspen.io.RubyIORackInput

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.