Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for recordWriteSuccess (0.07 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/RdmaTransport.java

                int bytesWritten = rdmaConnection.write(buffer, remoteAddress, remoteKey, length);
    
                long duration = System.nanoTime() - startTime;
                statistics.recordWriteSuccess(bytesWritten, duration);
    
                return bytesWritten;
            } catch (IOException e) {
                statistics.recordWriteError();
                throw e;
            }
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java

         * Record successful completion of a write request
         *
         * @param bytes number of bytes successfully written
         * @param durationNanos operation duration in nanoseconds
         */
        public void recordWriteSuccess(int bytes, long durationNanos) {
            recordRdmaWrite(bytes, durationNanos);
        }
    
        /**
         * Record a write operation error
         */
        public void recordWriteError() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 10.7K bytes
    - Viewed (0)
Back to top