Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for ActiveConnections (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

            public PoolHealthMetrics(int activeConnections, int nonPooledConnections, int trackedConnections, int maxPoolSize,
                    long totalHealthChecks, long failedHealthChecks, long connectionsRemoved, int uniqueEndpoints,
                    boolean healthCheckingEnabled, boolean proactiveHealthCheckEnabled) {
                this.activeConnections = activeConnections;
                this.nonPooledConnections = nonPooledConnections;
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 33.4K bytes
    - Click Count (0)
  2. src/main/java/jcifs/smb/MultiChannelManager.java

            }
    
            public int getActiveConnections() {
                return activeConnections.get();
            }
    
            public void incrementConnections() {
                activeConnections.incrementAndGet();
            }
    
            public void decrementConnections() {
                activeConnections.decrementAndGet();
            }
    
            public boolean isHealthy() {
                return isHealthy;
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 20.5K bytes
    - Click Count (0)
  3. src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java

        @Override
        public String toString() {
            return String.format(
                    "RdmaStatistics[reads=%d, writes=%d, sends=%d, receives=%d, "
                            + "bytes=%d, errors=%d, errorRate=%.3f, activeConnections=%d, activeMemRegions=%d]",
                    rdmaReads.get(), rdmaWrites.get(), rdmaSends.get(), rdmaReceives.get(), bytesTransferred.get(), operationErrors.get(),
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sun Aug 24 00:12:28 GMT 2025
    - 10.7K bytes
    - Click Count (0)
Back to Top