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

Commit 2120eced authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

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

parents ba0576ee 09b69c85
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
@@ -72380,6 +72380,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);