Searched refs:maxConnections (Results 1 – 8 of 8) sorted by relevance
53 public void setMaxTotalConnections (final int maxConnections) { in setMaxTotalConnections() argument54 params.setIntParameter(ConnManagerPNames.MAX_TOTAL_CONNECTIONS, maxConnections); in setMaxTotalConnections()
119 while (sipStack.maxConnections != -1 in run()120 && this.nConnections >= sipStack.maxConnections) { in run()
133 while (sipStack.maxConnections != -1 in run()134 && this.nConnections >= sipStack.maxConnections) { in run()
614 if (sipStack.maxConnections != -1) { in run()640 if (sipStack.maxConnections != -1) { in run()
594 if (sipStack.maxConnections != -1) { in run()620 if (sipStack.maxConnections != -1) { in run()
250 protected int maxConnections; field in SIPTransactionStack435 this.maxConnections = -1; in SIPTransactionStack()1769 this.maxConnections = nconnections; in setMaxConnections()
789 String maxConnections = configurationProperties in SipStackImpl() local791 if (maxConnections != null) { in SipStackImpl()793 this.maxConnections = new Integer(maxConnections).intValue(); in SipStackImpl()
264 @Test public void maxConnections() throws IOException, InterruptedException { in maxConnections() method in ConnectionPoolTest