Searched refs:activeClientTransactionCount (Results 1 - 1 of 1) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPTransactionStack.java158 private AtomicInteger activeClientTransactionCount = new AtomicInteger(0); field in class:SIPTransactionStack
504 this.activeClientTransactionCount = new AtomicInteger(0);
1523 if (this.activeClientTransactionCount.get() > clientTransactionTableHiwaterMark) {
1527 this.activeClientTransactionCount.incrementAndGet();
1538 this.activeClientTransactionCount.incrementAndGet();
1564 if (this.activeClientTransactionCount.decrementAndGet() <= this.clientTransactionTableLowaterMark
2274 * @return the activeClientTransactionCount
2277 return activeClientTransactionCount.get();

Completed in 54 milliseconds