org.apache.tapestry5.ioc
Class IOCSymbols

java.lang.Object
  extended by org.apache.tapestry5.ioc.IOCSymbols
Direct Known Subclasses:
IOCSymbols

public class IOCSymbols
extends java.lang.Object

Configuration symbols used by the IoC container.

Since:
5.2.2

Field Summary
static java.lang.String THREAD_POOL_CORE_SIZE
          The minimum size of the thread pool.
static java.lang.String THREAD_POOL_ENABLED
          By default, the ParallelExecutor service uses a thread pool.
static java.lang.String THREAD_POOL_KEEP_ALIVE
          Time in milliseconds (via TimeInterval) to keep waiting threads alive.
static java.lang.String THREAD_POOL_MAX_SIZE
          Maximium size of the pool before submitted invocations must wait to execute; the default is 20.
 
Constructor Summary
IOCSymbols()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

THREAD_POOL_CORE_SIZE

public static final java.lang.String THREAD_POOL_CORE_SIZE
The minimum size of the thread pool. The default is 3.

See Also:
Constant Field Values

THREAD_POOL_MAX_SIZE

public static final java.lang.String THREAD_POOL_MAX_SIZE
Maximium size of the pool before submitted invocations must wait to execute; the default is 20.

See Also:
Constant Field Values

THREAD_POOL_KEEP_ALIVE

public static final java.lang.String THREAD_POOL_KEEP_ALIVE
Time in milliseconds (via TimeInterval) to keep waiting threads alive. Default is one minute (an epoch in application time).

See Also:
Constant Field Values

THREAD_POOL_ENABLED

public static final java.lang.String THREAD_POOL_ENABLED
By default, the ParallelExecutor service uses a thread pool. In environments (such as Google Application Engine) where thread creation is not allowed, this can be set to "false", and deferred logic will, instead, execute immediately.

Since:
5.1.0.3
See Also:
Constant Field Values
Constructor Detail

IOCSymbols

public IOCSymbols()


Copyright © 2006-2011 Apache Software Foundation. All Rights Reserved.