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

kikaha.urouting.producers.AsyncResponseProducer Maven / Gradle / Ivy

There is a newer version: 2.1.10.Final
Show newest version
package kikaha.urouting.producers;

import javax.inject.*;
import io.undertow.server.HttpServerExchange;
import kikaha.urouting.*;
import kikaha.urouting.api.*;

/**
 *
 */
@Singleton
public class AsyncResponseProducer implements ContextProducer {

	@Inject RoutingMethodResponseWriter responseWriter;
	@Inject RoutingMethodExceptionHandler exceptionHandler;

	@Override
	public AsyncResponse produce( HttpServerExchange exchange ) throws RoutingException {
		return new AsyncResponse( exchange, responseWriter, exceptionHandler );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy