Implement org.apache.catalina.Executor interface in TomcatExecutorWrapper
-------------------------------------------------------------------------
Key: GERONIMO-5491
URL: https://issues.apache.org/jira/browse/GERONIMO-5491
Project: Geronimo
Issue Type: Bug
Security Level: public (Regular issues)
Components: Tomcat
Affects Versions: 3.0
Reporter: Han Hong Fang
Assignee: Han Hong Fang
Implement org.apache.catalina.Executor interface in TomcatExecutorWrapper as
spec below.
/**
* Executes the given command at some time in the future. The command
* may execute in a new thread, in a pooled thread, or in the calling
* thread, at the discretion of the <tt>Executor</tt> implementation.
* If no threads are available, it will be added to the work queue.
* If the work queue is full, the system will wait for the specified
* time until it throws a RejectedExecutionException
*
* @param command the runnable task
* @throws RejectedExecutionException if this task cannot be
* accepted for execution - the queue is full
* @throws NullPointerException if command or unit is null
*/
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.