Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for recordWriteError (0.05 sec)

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

                long duration = System.nanoTime() - startTime;
                statistics.recordWriteSuccess(bytesWritten, duration);
    
                return bytesWritten;
            } catch (IOException e) {
                statistics.recordWriteError();
                throw e;
            }
        }
    
        /**
         * Gets the RDMA buffer manager for memory operations.
         *
         * @return buffer manager instance
         */
    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

         */
        public void recordWriteSuccess(int bytes, long durationNanos) {
            recordRdmaWrite(bytes, durationNanos);
        }
    
        /**
         * Record a write operation error
         */
        public void recordWriteError() {
            recordError();
        }
    
        @Override
        public String toString() {
            return String.format(
                    "RdmaStatistics[reads=%d, writes=%d, sends=%d, receives=%d, "
    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