Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for supplyAsync (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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 =
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 20.8K bytes
    - Click Count (0)
  2. 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);
                    }
                    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 31.6K bytes
    - Click Count (0)
Back to Top