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

Commit ab6f975a authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Track addition of Flow.* to the public API." am: 2120eced am: 7c6e1b23 am: edf63555

Change-Id: Iee19cd18f61ec5b7572e0aa71468110ea1b370e5
parents 4ca52178 edf63555
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
@@ -73538,6 +73538,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);