Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for supplyAsync (0.05 sec)

  1. src/main/java/jcifs/internal/smb2/persistent/HandleReconnector.java

                        "Failed to reconnect after " + maxRetries + " attempts. " + "Original cause: " + originalCause.getMessage(),
                        originalCause));
            }
    
            return CompletableFuture.supplyAsync(() -> {
                try {
                    // Wait before retry (except first attempt)
                    if (attempt > 0) {
                        long delay = retryDelay * (1L << attempt); // Exponential backoff
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/witness/WitnessClient.java

         */
        public CompletableFuture<WitnessRegistration> registerForNotifications(String shareName, InetAddress serverAddress,
                WitnessNotificationListener listener) {
    
            return CompletableFuture.supplyAsync(() -> {
                try {
                    // Create registration
                    WitnessRegistration registration =
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  3. docs/smb3-features/02-persistent-handles-design.md

                return CompletableFuture.failedFuture(
                    new IOException("Failed to reconnect after " + maxRetries + " attempts"));
            }
            
            return CompletableFuture.supplyAsync(() -> {
                try {
                    // Wait before retry (except first attempt)
                    if (attempt > 0) {
                        Thread.sleep(retryDelay * attempt);
                    }
                    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  4. docs/smb3-features/06-witness-protocol-design.md

                String shareName, 
                InetAddress serverAddress,
                WitnessNotificationListener listener) {
            
            return CompletableFuture.supplyAsync(() -> {
                try {
                    // Create registration
                    WitnessRegistration registration = new WitnessRegistration(
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
Back to top