Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.2)

Part Number E27170-01

weblogic.j2ee.descriptor.wl
Interface MaxThreadsConstraintBean

All Superinterfaces:
SettableBean

public interface MaxThreadsConstraintBean
extends SettableBean


Method Summary
 int getCount()
           
 String getId()
           
 String getName()
          The name of the MaxThreadsConstraint that is unique for a given module
 String getPoolName()
           
 int getQueueSize()
          Desired size of the MaxThreadsConstraint queue for requests pending execution.
 void setCount(int count)
           
 void setId(String id)
           
 void setName(String name)
           
 void setPoolName(String poolName)
           
 void setQueueSize(int queueSize)
          Desired size of the MaxThreadsConstraint queue for requests pending execution.
 
Methods inherited from interface weblogic.descriptor.SettableBean
isSet, unSet
 

Method Detail

getName

String getName()
The name of the MaxThreadsConstraint that is unique for a given module


setName

void setName(String name)

getCount

int getCount()
Default Value:
-1

setCount

void setCount(int count)

getPoolName

String getPoolName()

setPoolName

void setPoolName(String poolName)

getId

String getId()

setId

void setId(String id)

setQueueSize

void setQueueSize(int queueSize)
Desired size of the MaxThreadsConstraint queue for requests pending execution.

Set the approximate size of the MaxThreadsConstraint requests queue. Requests are added to this queue if they are not yet eligible for execution due the the maximum number of concurrent threads that can execute requests sharing this constraint has been reached. The actual size of the queue created may be different from the value set here. For example, it may be rounded up to the nearest power of 2.

Default Value:
8192
Maximum Value:
65536
Minimum Value:
256

getQueueSize

int getQueueSize()
Desired size of the MaxThreadsConstraint queue for requests pending execution.


Copyright 1996, 2013, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.2)

Part Number E27170-01