com.sun.grizzly.jruby.rack.RackAdapter Maven / Gradle / Ivy
package com.sun.grizzly.jruby.rack;
import org.jruby.Ruby;
/**
* Created by IntelliJ IDEA.
* User: jacob
* Date: Oct 28, 2008
* Time: 1:01:14 PM
* To change this template use File | Settings | File Templates.
*/
public interface RackAdapter {
// Shuts the adapter down
public void shutdown();
// Returns an application suitable for processing a request
public RackApplication getApp();
// Indicates that the app is done processing the request
public void returnApp(RackApplication returned);
// get the factory involved
public RackApplicationFactory getFactory();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy