Package net.officefloor.servlet
Interface ServletServicer
-
- All Known Implementing Classes:
TomcatServletManager
public interface ServletServicerServicesServerHttpConnectionviaServlet.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidservice(ServerHttpConnection connection, java.util.concurrent.Executor executor, AsynchronousFlow asynchronousFlow, AsynchronousFlowCompletion asynchronousFlowCompletion, java.util.Map<java.lang.String,? extends java.lang.Object> attributes)Services theServerHttpConnection.
-
-
-
Method Detail
-
service
void service(ServerHttpConnection connection, java.util.concurrent.Executor executor, AsynchronousFlow asynchronousFlow, AsynchronousFlowCompletion asynchronousFlowCompletion, java.util.Map<java.lang.String,? extends java.lang.Object> attributes) throws java.lang.Exception
Services theServerHttpConnection.- Parameters:
connection-ServerHttpConnection.executor-Executor.asynchronousFlow-AsynchronousFlowto allow forAsyncContext.asynchronousFlowCompletion-AsynchronousFlowCompletionfor handling completion of servicing.attributes- Optional attributes to load to theHttpServletRequest. May benull.- Throws:
java.lang.Exception- If fails to service.
-
-