Skip to content

Latest commit

 

History

History
55 lines (37 loc) · 1.56 KB

File metadata and controls

55 lines (37 loc) · 1.56 KB
layout title description keywords needAutoGenerateSidebar permalink
default-layout
InstancePoolStatus Class - Dynamsoft Barcode Reader SDK Java Edition API Reference
This page shows the InstancePoolStatus Class of Dynamsoft Barcode Reader SDK Java Edition.
InstancePoolStatus, class, api reference, Java
false
/programming/java/api-reference/class/InstancePoolStatus.html

InstancePoolStatus

Represents the status of an instance pool.

Attributes

Attribute Type
authorizedInstancesCount int
remainingInstancesCount int
waitingCreationInstances int
totalWaitOccurrences int

authorizedInstancesCount

The number of authorized instances, which represents the maximum available instances.

int com.dynamsoft.dbr.InstancePoolStatus.authorizedInstancesCount

remainingInstancesCount

The count of available instances that are currently not in use.

int com.dynamsoft.dbr.InstancePoolStatus.remainingInstancesCount

waitingCreationInstances

The number of 'GetInstance' requests that are currently waiting because there are no available instances in the pool.

int com.dynamsoft.dbr.InstancePoolStatus.waitingCreationInstances

totalWaitOccurrences

The total count of times that any operation(InitLicense, GetInstance, or Decode functions) has encountered a wait state.

int com.dynamsoft.dbr.InstancePoolStatus.totalWaitOccurrences