Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for rdmaRead (0.83 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java

            } catch (Exception e) {
                state = RdmaConnectionState.ERROR;
                throw new IOException("DiSNI RDMA receive failed", e);
            }
        }
    
        @Override
        public void rdmaRead(RdmaMemoryRegion localRegion, long remoteAddress, int remoteKey, int length) throws IOException {
            if (state != RdmaConnectionState.ESTABLISHED) {
                throw new IOException("Connection not established");
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. docs/smb3-features/05-rdma-smb-direct-design.md

        /**
         * Receive data using RDMA  
         */
        public abstract ByteBuffer receive(int timeout) throws IOException;
        
        /**
         * Perform RDMA read operation
         */
        public abstract void rdmaRead(RdmaMemoryRegion localRegion, 
                                     long remoteAddress, 
                                     int remoteKey,
                                     int length) throws IOException;
        
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java

     */
    public class RdmaStatistics {
    
        /**
         * Creates a new RDMA statistics tracker
         */
        public RdmaStatistics() {
            // Default constructor
        }
    
        private final AtomicLong rdmaReads = new AtomicLong();
        private final AtomicLong rdmaWrites = new AtomicLong();
        private final AtomicLong rdmaSends = new AtomicLong();
        private final AtomicLong rdmaReceives = new AtomicLong();
    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