Skip navigation links

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

Part Number E55141-01
P4 Change 1723563 on 2015/10/09


weblogic.j2ee.descriptor.wl
Interface MaxThreadsConstraintBean

All Superinterfaces:
SettableBean

public interface MaxThreadsConstraintBean
extends SettableBean

Method Summary
abstract  int getCount()
           
abstract  String getId()
           
abstract  String getName()
          The name of the MaxThreadsConstraint that is unique for a given module
abstract  String getPoolName()
           
abstract  int getQueueSize()
          Desired size of the MaxThreadsConstraint queue for requests pending execution.
abstract  void setCount(int count)
           
abstract  void setId(String id)
           
abstract  void setName(String name)
           
abstract  void setPoolName(String poolName)
           
abstract  void setQueueSize(int queueSize)
          Desired size of the MaxThreadsConstraint queue for requests pending execution.

 

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()

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. Setting a large queue size would increase memory consumption. It is best to not set the queue size to be larger than necessary.

Since:
12.1.2.0

getQueueSize

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

Skip navigation links

Copyright 1996, 2015, 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.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09