- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for RdmaChannelInfo (0.86 sec)
-
src/main/java/jcifs/internal/smb2/rdma/RdmaChannelInfo.java
*/ public class RdmaChannelInfo { private final Smb2RdmaTransform transform; /** * Create new RDMA channel info * * @param remoteKey remote memory key for RDMA access (token) * @param address remote memory address (offset) * @param length length of the memory region */ public RdmaChannelInfo(int remoteKey, long address, int length) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2ReadRequest.java
this.rdmaChannelInfo = new RdmaChannelInfo(remoteKey, address, length); this.channel = Smb2Constants.SMB2_CHANNEL_RDMA_V1; } /** * Get RDMA channel information * * @return RDMA channel info, or null if not using RDMA */ public RdmaChannelInfo getRdmaChannelInfo() { return rdmaChannelInfo; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2WriteRequest.java
this.rdmaChannelInfo = new RdmaChannelInfo(remoteKey, address, length); this.channel = Smb2Constants.SMB2_CHANNEL_RDMA_V1; } /** * Get RDMA channel information * * @return RDMA channel info, or null if not using RDMA */ public RdmaChannelInfo getRdmaChannelInfo() { return rdmaChannelInfo; } /** * Get write data
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 7.1K bytes - Viewed (0)