Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ensureConnected (0.18 sec)

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

                    rdmaConnection = null;
                }
            }
            return delegate.disconnect(hard, inuse);
        }
    
        @Override
        public boolean ensureConnected() throws IOException {
            boolean result = delegate.ensureConnected();
    
            // Try to establish RDMA connection if configured
            if (result && delegate.getContext().getConfig().isRdmaEnabled()) {
                try {
    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/smb/SmbTransportInternal.java

         *
         * @return whether the transport was connected
         * @throws SmbException if an SMB error occurs
         * @throws IOException if an I/O error occurs
         */
        boolean ensureConnected() throws IOException;
    
        /**
         * Gets DFS referrals for the specified path.
         *
         * @param ctx the CIFS context
         * @param name the DFS path to resolve
         * @param targetHost the target host name
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
Back to top