Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for updateActivity (0.4 sec)

  1. src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java

         */
        public long getLastActivityTime() {
            return lastActivityTime;
        }
    
        /**
         * Update activity timestamp
         */
        public void updateActivity() {
            this.lastActivityTime = System.currentTimeMillis();
        }
    
        /**
         * Get idle time since last activity
         *
         * @return idle time in milliseconds
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

            // Send echo request as keep-alive
            // This would need to be implemented with actual echo request/response
            log.debug("Sending keep-alive for channel {}", channel.getChannelId());
            channel.updateActivity();
        }
    
        private void discoverInterfaces() {
            if (!multiChannelEnabled)
                return;
    
            // Periodically rediscover interfaces in case of network changes
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 20K bytes
    - Viewed (0)
  3. docs/smb3-features/03-multi-channel-design.md

            this.requestsSent = new AtomicLong();
            this.requestsReceived = new AtomicLong();
            this.errors = new AtomicLong();
            
            this.isPrimary = false;
        }
        
        public void updateActivity() {
            this.lastActivityTime = System.currentTimeMillis();
        }
        
        public long getIdleTime() {
            return System.currentTimeMillis() - lastActivityTime;
        }
        
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
Back to top