Required so Servlet 3 Async implementation can use the container thread pool when a new thread needs to be dispatched. (e.g. from AsyncContext.start(Runnable)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@965123
13f79535-47bb-0310-9956-
ffa450edef68
package org.apache.coyote;
import java.util.Iterator;
+import java.util.concurrent.Executor;
/**
/**
+ * The executor, provide access to the underlying thread pool.
+ */
+ public Executor getExecutor();
+
+
+ /**
* Initialise the protocol.
*/
public void init() throws Exception;