- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for rdmaRead (0.04 seconds)
-
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"); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 10.2K bytes - Click Count (0) -
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; /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 35.9K bytes - Click Count (0) -
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();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 10.7K bytes - Click Count (0)