Lines Matching refs:action

45  * action or computes a value when another CompletionStage completes.
107 * {@code whenComplete}, when the supplied action itself encounters an
210 * to the supplied action.
215 * @param action the action to perform before completing the
219 public CompletionStage<Void> thenAccept(Consumer<? super T> action);
225 * the supplied action.
230 * @param action the action to perform before completing the
234 public CompletionStage<Void> thenAcceptAsync(Consumer<? super T> action);
239 * stage's result as the argument to the supplied action.
244 * @param action the action to perform before completing the
249 public CompletionStage<Void> thenAcceptAsync(Consumer<? super T> action,
253 * normally, executes the given action.
258 * @param action the action to perform before completing the
262 public CompletionStage<Void> thenRun(Runnable action);
266 * normally, executes the given action using this stage's default
272 * @param action the action to perform before completing the
276 public CompletionStage<Void> thenRunAsync(Runnable action);
280 * normally, executes the given action using the supplied Executor.
285 * @param action the action to perform before completing the
290 public CompletionStage<Void> thenRunAsync(Runnable action,
357 * results as arguments to the supplied action.
363 * @param action the action to perform before completing the
370 BiConsumer<? super T, ? super U> action);
376 * results as arguments to the supplied action.
382 * @param action the action to perform before completing the
389 BiConsumer<? super T, ? super U> action);
395 * supplied action.
401 * @param action the action to perform before completing the
409 BiConsumer<? super T, ? super U> action,
414 * given stage both complete normally, executes the given action.
420 * @param action the action to perform before completing the
425 Runnable action);
428 * given stage both complete normally, executes the given action
435 * @param action the action to perform before completing the
440 Runnable action);
444 * given stage both complete normally, executes the given action
451 * @param action the action to perform before completing the
457 Runnable action,
520 * corresponding result as argument to the supplied action.
526 * @param action the action to perform before completing the
532 Consumer<? super T> action);
538 * corresponding result as argument to the supplied action.
544 * @param action the action to perform before completing the
550 Consumer<? super T> action);
556 * the supplied action.
562 * @param action the action to perform before completing the
569 Consumer<? super T> action,
574 * other given stage complete normally, executes the given action.
580 * @param action the action to perform before completing the
585 Runnable action);
589 * other given stage complete normally, executes the given action
596 * @param action the action to perform before completing the
602 Runnable action);
606 * other given stage complete normally, executes the given action
613 * @param action the action to perform before completing the
620 Runnable action,
761 * this stage, that executes the given action when this stage completes.
763 * <p>When this stage is complete, the given action is invoked
766 * stage is completed when the action returns.
770 * so the supplied action should not throw an exception. However,
772 * normally but the supplied action throws an exception, then the
774 * action's exception. Or, if this stage completed exceptionally
775 * and the supplied action throws an exception, then the returned
778 * @param action the action to perform
782 (BiConsumer<? super T, ? super Throwable> action);
786 * this stage, that executes the given action using this stage's
789 * <p>When this stage is complete, the given action is invoked with the
792 * when the action returns.
796 * so the supplied action should not throw an exception. However,
798 * normally but the supplied action throws an exception, then the
800 * action's exception. Or, if this stage completed exceptionally
801 * and the supplied action throws an exception, then the returned
804 * @param action the action to perform
808 (BiConsumer<? super T, ? super Throwable> action);
812 * this stage, that executes the given action using the supplied
815 * <p>When this stage is complete, the given action is invoked with the
818 * when the action returns.
822 * so the supplied action should not throw an exception. However,
824 * normally but the supplied action throws an exception, then the
826 * action's exception. Or, if this stage completed exceptionally
827 * and the supplied action throws an exception, then the returned
830 * @param action the action to perform
835 (BiConsumer<? super T, ? super Throwable> action,