當前位置: 首頁>>代碼示例>>Java>>正文


Java CompletableFuture.thenAcceptAsync方法代碼示例

本文整理匯總了Java中java.util.concurrent.CompletableFuture.thenAcceptAsync方法的典型用法代碼示例。如果您正苦於以下問題:Java CompletableFuture.thenAcceptAsync方法的具體用法?Java CompletableFuture.thenAcceptAsync怎麽用?Java CompletableFuture.thenAcceptAsync使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在java.util.concurrent.CompletableFuture的用法示例。


在下文中一共展示了CompletableFuture.thenAcceptAsync方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: ThreadExecutor

import java.util.concurrent.CompletableFuture; //導入方法依賴的package包/類
public <T> CompletableFuture<Void> thenAccept
    (CompletableFuture<T> f, Consumer<? super T> a) {
    return f.thenAcceptAsync(a, new ThreadExecutor());
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:5,代碼來源:CompletableFutureTest.java

示例2: toFuture

import java.util.concurrent.CompletableFuture; //導入方法依賴的package包/類
static <T> Future<T> toFuture(
        final CompletableFuture<T> completableFuture
) {
    final Future<T> future = Future.future();
    completableFuture.thenAcceptAsync(future::complete);
    return future;
}
 
開發者ID:silentbalanceyh,項目名稱:vertx-zero,代碼行數:8,代碼來源:Async.java

示例3: updateXConnect

import java.util.concurrent.CompletableFuture; //導入方法依賴的package包/類
/**
 * Updates XConnect groups and flows for given key.
 *
 * @param key XConnect key
 * @param prevPorts previous XConnect ports
 * @param ports new XConnect ports
 */
private void updateXConnect(XConnectStoreKey key, Set<PortNumber> prevPorts,
        Set<PortNumber> ports) {
    // remove old filter
    prevPorts.stream().filter(port -> !ports.contains(port)).forEach(port -> {
        revokeFilter(key, ImmutableSet.of(port));
    });
    // install new filter
    ports.stream().filter(port -> !prevPorts.contains(port)).forEach(port -> {
        populateFilter(key, ImmutableSet.of(port));
    });

    CompletableFuture<ObjectiveError> fwdFuture = new CompletableFuture<>();
    CompletableFuture<ObjectiveError> nextFuture = new CompletableFuture<>();

    if (xConnectNextObjStore.containsKey(key)) {
        NextObjective nextObj = xConnectNextObjStore.get(key).value();
        revokeFwd(key, nextObj, fwdFuture);

        fwdFuture.thenAcceptAsync(fwdStatus -> {
            if (fwdStatus == null) {
                log.debug("Fwd removed. Now remove group {}", key);
                revokeNext(key, nextObj, nextFuture);
            }
        });

        nextFuture.thenAcceptAsync(nextStatus -> {
            if (nextStatus == null) {
                log.debug("Installing new group and flow for {}", key);
                populateFwd(key, populateNext(key, ports));
            }
        });
    } else {
        log.warn("NextObj for {} does not exist in the store.", key);
    }
}
 
開發者ID:shlee89,項目名稱:athena,代碼行數:43,代碼來源:XConnectHandler.java

示例4: main

import java.util.concurrent.CompletableFuture; //導入方法依賴的package包/類
public static void main(String[] args) {

		System.out.printf("Main: Start\n");
		CompletableFuture<Integer> seedFuture = new CompletableFuture<>();
		Thread seedThread = new Thread(new SeedGenerator(seedFuture));
		seedThread.start();

		System.out.printf("Main: Getting the seed\n");
		int seed = 0;
		try {
			seed = seedFuture.get();
		} catch (InterruptedException | ExecutionException e) {
			e.printStackTrace();
		}
		System.out.printf("Main: The seed is: %d\n", seed);

		System.out.printf("Main: Launching the list of numbers generator\n");
		NumberListGenerator task = new NumberListGenerator(seed);
		CompletableFuture<List<Long>> startFuture = CompletableFuture.supplyAsync(task);

		System.out.printf("Main: Launching step 1\n");
		CompletableFuture<Long> step1Future = startFuture.thenApplyAsync(list -> {
			System.out.printf("%s: Step 1: Start\n", Thread.currentThread().getName());
			long selected = 0;
			long selectedDistance = Long.MAX_VALUE;
			long distance;
			for (Long number : list) {
				distance = Math.abs(number - 1000);
				if (distance < selectedDistance) {
					selected = number;
					selectedDistance = distance;
				}
			}
			System.out.printf("%s: Step 1: Result - %d\n", Thread.currentThread().getName(), selected);
			return selected;
		});

		System.out.printf("Main: Launching step 2\n");
		CompletableFuture<Long> step2Future = startFuture
				.thenApplyAsync(list -> list.stream().max(Long::compare).get());

		CompletableFuture<Void> write2Future = step2Future.thenAccept(selected -> {
			System.out.printf("%s: Step 2: Result - %d\n", Thread.currentThread().getName(), selected);
		});

		System.out.printf("Main: Launching step 3\n");
		NumberSelector numberSelector = new NumberSelector();
		CompletableFuture<Long> step3Future = startFuture.thenApplyAsync(numberSelector);

		System.out.printf("Main: Waiting for the end of the three steps\n");
		CompletableFuture<Void> waitFuture = CompletableFuture.allOf(step1Future, write2Future, step3Future);
		CompletableFuture<Void> finalFuture = waitFuture.thenAcceptAsync((param) -> {
			System.out.printf("Main: The CompletableFuture example has been completed.");
		});

		finalFuture.join();

	}
 
開發者ID:PacktPublishing,項目名稱:Java-9-Concurrency-Cookbook-Second-Edition,代碼行數:59,代碼來源:Main.java

示例5:

import java.util.concurrent.CompletableFuture; //導入方法依賴的package包/類
public <T> CompletableFuture<Void> thenAccept
    (CompletableFuture<T> f, Consumer<? super T> a) {
    return f.thenAcceptAsync(a);
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:5,代碼來源:CompletableFutureTest.java


注:本文中的java.util.concurrent.CompletableFuture.thenAcceptAsync方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。