Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7c6e1b23 authored by Tobias Thierer's avatar Tobias Thierer Committed by android-build-merger
Browse files

Merge "Track addition of Flow.* to the public API."

am: 2120eced

Change-Id: I17be3b21c3b02b00c30d175c0bf513b2cb4efc85
parents a2183240 2120eced
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
@@ -72381,6 +72381,29 @@ package java.util.concurrent {
    method public static java.util.concurrent.ScheduledExecutorService unconfigurableScheduledExecutorService(java.util.concurrent.ScheduledExecutorService);
  }
  public final class Flow {
    method public static int defaultBufferSize();
  }
  public static interface Flow.Processor<T, R> extends java.util.concurrent.Flow.Subscriber<T> java.util.concurrent.Flow.Publisher<R> {
  }
  @java.lang.FunctionalInterface public static interface Flow.Publisher<T> {
    method public void subscribe(java.util.concurrent.Flow.Subscriber<? super T>);
  }
  public static interface Flow.Subscriber<T> {
    method public void onComplete();
    method public void onError(Throwable);
    method public void onNext(T);
    method public void onSubscribe(java.util.concurrent.Flow.Subscription);
  }
  public static interface Flow.Subscription {
    method public void cancel();
    method public void request(long);
  }
  public class ForkJoinPool extends java.util.concurrent.AbstractExecutorService {
    ctor public ForkJoinPool();
    ctor public ForkJoinPool(int);