Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createEndpoint (0.06 sec)

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

            super(remote, local);
            this.group = group;
    
            // In real implementation, this would create the endpoint:
            // this.endpoint = group.createEndpoint();
            this.endpoint = new Object();
        }
    
        @Override
        public void connect() throws IOException {
            try {
                // In real implementation, this would establish the RDMA connection:
    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

                                  RdmaActiveEndpointGroup<DisniRdmaEndpoint> group) throws IOException {
            super(remote, local);
            this.group = group;
            this.endpoint = group.createEndpoint();
        }
        
        @Override
        public void connect() throws IOException {
            try {
                endpoint.connect(remoteAddress, 1000);  // 1 second timeout
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
Back to top