1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
| import lombok.extern.slf4j.Slf4j;
import java.util.concurrent.*; import java.util.function.Function; import java.util.function.Supplier;
@Slf4j public class FutureUtil {
private static final int AVALIABLE_PROCESSORS = Runtime.getRuntime().availableProcessors();
private static final int TIMEOUT_VALUE = 1500; private static final TimeUnit TIMEOUT_UNIT = TimeUnit.MILLISECONDS;
public static final class Delayer {
static final ScheduledThreadPoolExecutor delayer;
static { delayer = new ScheduledThreadPoolExecutor(1, new DaemonThreadFactory()); delayer.setRemoveOnCancelPolicy(true); }
static ScheduledFuture<?> delay(Runnable command, long delay, TimeUnit unit) { return delayer.schedule(command, delay, unit); }
static final class DaemonThreadFactory implements ThreadFactory { @Override public Thread newThread(Runnable r) { Thread t = new Thread(r); t.setDaemon(true); t.setName("CompletableFutureScheduler"); return t; } } }
private static ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor( AVALIABLE_PROCESSORS, 3 * AVALIABLE_PROCESSORS, 3, TimeUnit.SECONDS, new LinkedBlockingDeque<>(20), new ThreadPoolExecutor.CallerRunsPolicy() );
public static <T> CompletableFuture<T> supplyAsync(Supplier<T> supplier){ return supplyAsync(TIMEOUT_VALUE,TIMEOUT_UNIT,supplier); }
public static <T> CompletableFuture<T> supplyAsync(long timeout, TimeUnit unit,Supplier<T> supplier){ return CompletableFuture.supplyAsync(supplier, threadPoolExecutor) .applyToEither(timeoutAfter(timeout,unit), Function.identity()) .exceptionally(throwable -> { throwable.printStackTrace(); log.error(throwable.getMessage()); return null; }); }
public static CompletableFuture runAsync(Runnable runnable){ return runAsync(TIMEOUT_VALUE,TIMEOUT_UNIT,runnable); }
public static CompletableFuture runAsync(long timeout, TimeUnit unit,Runnable runnable){ return CompletableFuture.runAsync(runnable,threadPoolExecutor) .applyToEither(timeoutAfter(timeout,unit), Function.identity()) .exceptionally(throwable -> { throwable.printStackTrace(); log.error(throwable.getMessage()); return null; }); }
public static CompletableFuture allOf(CompletableFuture... futures){ return allOf(TIMEOUT_VALUE,TIMEOUT_UNIT,futures); }
public static CompletableFuture allOf(long timeout, TimeUnit unit,CompletableFuture... futures){ return CompletableFuture.allOf(futures) .applyToEither(timeoutAfter(timeout,unit), Function.identity()) .exceptionally(throwable -> { throwable.printStackTrace(); log.error(throwable.getMessage()); return null; }); }
public static <T> CompletableFuture<T> timeoutAfter(long timeout, TimeUnit unit) { CompletableFuture<T> result = new CompletableFuture<T>(); Delayer.delayer.schedule(() -> result.completeExceptionally(new TimeoutException()), timeout, unit); return result; }
public static <T> CompletableFuture<T> timeoutAfter() { CompletableFuture<T> result = new CompletableFuture<T>(); Delayer.delayer.schedule(() -> result.completeExceptionally(new TimeoutException()), TIMEOUT_VALUE, TIMEOUT_UNIT); return result; }
}
|