C D E G I N O P Q R S T

C

createPool(String, int, int, int, int, boolean, long, String, boolean, int) - Method in interface org.apache.cocoon.components.thread.RunnableManager
Create a shared ThreadPool with a specific ThreadFactory
createPool(int, int, int, int, boolean, long, String, boolean, int) - Method in interface org.apache.cocoon.components.thread.RunnableManager
Create a private ThreadPool with a specific ThreadFactory

D

DEFAULT_BLOCK_POLICY - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
The default shutdown waittime time
DEFAULT_DAEMON_MODE - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
The default daemon mode
DEFAULT_KEEP_ALIVE_TIME - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
The default keep alive time
DEFAULT_MAX_POOL_SIZE - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
The default maximum pool size
DEFAULT_MIN_POOL_SIZE - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
The default minimum pool size
DEFAULT_QUEUE_SIZE - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
The default queue size
DEFAULT_SHUTDOWN_GRACEFUL - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
The default way to shutdown gracefully
DEFAULT_SHUTDOWN_WAIT_TIME - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
The default shutdown waittime time
DEFAULT_THREADPOOL_NAME - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
The default shutdown waittime time
DEFAULT_THREAD_PRIORITY - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
The default thread priority

E

execute(Runnable) - Method in interface org.apache.cocoon.components.thread.RunnableManager
Immediate Execution of a runnable in the background
execute(Runnable, long) - Method in interface org.apache.cocoon.components.thread.RunnableManager
Immediate Execution of a runnable in the background
execute(Runnable, long, long) - Method in interface org.apache.cocoon.components.thread.RunnableManager
Immediate Execution of a runnable in the background
execute(String, Runnable) - Method in interface org.apache.cocoon.components.thread.RunnableManager
Immediate Execution of a runnable in the background
execute(String, Runnable, long) - Method in interface org.apache.cocoon.components.thread.RunnableManager
Immediate Execution of a runnable in the background
execute(String, Runnable, long, long) - Method in interface org.apache.cocoon.components.thread.RunnableManager
Delayed and repeated Execution of a runnable in the background
execute(Runnable) - Method in interface org.apache.cocoon.components.thread.ThreadPool
Execute a command

G

getBlockPolicy() - Method in interface org.apache.cocoon.components.thread.ThreadPool
Gets the block policy
getKeepAliveTime() - Method in interface org.apache.cocoon.components.thread.ThreadPool
Gets the keepAliveTime in milliseconds
getMaxPoolSize() - Method in interface org.apache.cocoon.components.thread.ThreadPool
Gets the maximum pool size
getMaxQueueSize() - Method in interface org.apache.cocoon.components.thread.ThreadPool
Gets the maximum queue size
getMinPoolSize() - Method in interface org.apache.cocoon.components.thread.ThreadPool
Gets the minimum pool size
getName() - Method in interface org.apache.cocoon.components.thread.ThreadPool
Gets the name of the thread pool
getPriority() - Method in interface org.apache.cocoon.components.thread.ThreadFactory
Get the priority newly created Threads will have
getPriority() - Method in interface org.apache.cocoon.components.thread.ThreadPool
Gets the priority used to create Threads
getQueueSize() - Method in interface org.apache.cocoon.components.thread.Queue
get the current queue size
getQueueSize() - Method in interface org.apache.cocoon.components.thread.ThreadPool
Gets the queue size of the thread pool
getShutdownWaitTimeMs() - Method in interface org.apache.cocoon.components.thread.ThreadPool
Gets the shutdownWaitTime in milliseconds

I

isDaemon() - Method in interface org.apache.cocoon.components.thread.ThreadFactory
Get the daemon mode created Threads will have
isDaemon() - Method in interface org.apache.cocoon.components.thread.ThreadPool
Returns true if thread runs as daemon
isQueued() - Method in interface org.apache.cocoon.components.thread.ThreadPool
Whether this DefaultThreadPool has a queue
isShutdownGraceful() - Method in interface org.apache.cocoon.components.thread.ThreadPool
Returns true if shutdown is graceful
isTerminatedAfterShutdown() - Method in interface org.apache.cocoon.components.thread.ThreadPool
Returns true if a shutDown method has succeeded in terminating all threads

N

newThread(Runnable) - Method in interface org.apache.cocoon.components.thread.ThreadFactory
Create a new Thread for a Runnable command

O

org.apache.cocoon.components.thread - package org.apache.cocoon.components.thread
 

P

POLICY_ABORT - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
ThreadPool block policy ABORT
POLICY_DISCARD - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
ThreadPool block policy DISCARD
POLICY_DISCARD_OLDEST - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
ThreadPool block policy DISCARD-OLDEST
POLICY_RUN - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
ThreadPool block policy RUN
POLICY_WAIT - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
ThreadPool block policy WAIT

Q

Queue - interface org.apache.cocoon.components.thread.Queue.
Extension to add queue size reporting

R

ROLE - Static variable in interface org.apache.cocoon.components.thread.RunnableManager
The role name
ROLE - Static variable in interface org.apache.cocoon.components.thread.ThreadPool
The Role name
RunnableManager - interface org.apache.cocoon.components.thread.RunnableManager.
The RunnableManager interface describes the functionality of an implementation running commands in the background.
remove(Runnable) - Method in interface org.apache.cocoon.components.thread.RunnableManager
Remove a Runnable from the execution stack

S

setBlockPolicy(String) - Method in interface org.apache.cocoon.components.thread.ThreadPool
Set the blocking policy
setDaemon(boolean) - Method in interface org.apache.cocoon.components.thread.ThreadFactory
Set the daemon mode of created Threads should have
setDaemon(boolean) - Method in interface org.apache.cocoon.components.thread.ThreadPool
Set to true if thread shall run as daemon
setKeepAliveTime(long) - Method in interface org.apache.cocoon.components.thread.ThreadPool
Sets the keepAliveTime in milliseconds
setMaxPoolSize(int) - Method in interface org.apache.cocoon.components.thread.ThreadPool
Sets the maximum pool size
setMinPoolSize(int) - Method in interface org.apache.cocoon.components.thread.ThreadPool
Sets the minimum pool size
setName(String) - Method in interface org.apache.cocoon.components.thread.ThreadPool
DOCUMENT ME!
setPriority(int) - Method in interface org.apache.cocoon.components.thread.ThreadFactory
Set the priority newly created Threads should have
setPriority(int) - Method in interface org.apache.cocoon.components.thread.ThreadPool
Sets the priority of this thread pool: Thread.MIN_PRIORITY, Thread.NORM_PRIORITY, or Thread.MAX_PRIORITY
setQueueSize(int) - Method in interface org.apache.cocoon.components.thread.ThreadPool
Sets the queue size of the thread pool
setShutdownGraceful(boolean) - Method in interface org.apache.cocoon.components.thread.ThreadPool
Sets the shutdownGraceful (true if graceful)
setShutdownWaitTimeMs(int) - Method in interface org.apache.cocoon.components.thread.ThreadPool
Sets the shutdownWaitTime in milliseconds
shutdown() - Method in interface org.apache.cocoon.components.thread.ThreadPool
Terminates all threads possibly awaiting processing all elements currently in queue.

T

ThreadFactory - interface org.apache.cocoon.components.thread.ThreadFactory.
The ThreadFactory interface describes the responability of Factories creating Thread for ThreadPools of the RunnableManager
ThreadPool - interface org.apache.cocoon.components.thread.ThreadPool.
The ThreadPool interface gives access to methods needed to inspect and use of a pool of threads

C D E G I N O P Q R S T

Copyright © 1999-2007 The Apache Software Foundation. All Rights Reserved.