All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.reactivestreams.example.unicast.InfiniteIncrementNumberPublisher Maven / Gradle / Ivy

package org.reactivestreams.example.unicast;

import java.util.Iterator;
import java.util.concurrent.Executor;

import org.reactivestreams.Subscription;
import org.reactivestreams.Subscriber;
import org.reactivestreams.Publisher;

public class InfiniteIncrementNumberPublisher extends AsyncIterablePublisher {
    public InfiniteIncrementNumberPublisher(final Executor executor) {
        super(new Iterable() {
          @Override public Iterator iterator() {
            return new Iterator() {
              private int at = 0;
              @Override public boolean hasNext() { return true; }
              @Override public Integer next() { return at++; } // Wraps around on overflow
              @Override public void remove() { throw new UnsupportedOperationException(); }
            };
          }
        }, executor);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy