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

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

There is a newer version: 1.0.4
Show newest version
package org.reactivestreams.example.unicast;

import java.util.Collections;
import java.util.Iterator;
import java.util.concurrent.Executor;
import org.reactivestreams.Subscription;
import org.reactivestreams.Subscriber;
import org.reactivestreams.Publisher;

public class NumberIterablePublisher extends AsyncIterablePublisher {
    public NumberIterablePublisher(final int from, final int to, final Executor executor) {
        super(new Iterable() {
          { if(from > to) throw new IllegalArgumentException("from must be equal or greater than to!"); }
          @Override public Iterator iterator() {
            return new Iterator() {
              private int at = from;
              @Override public boolean hasNext() { return at < to; }
              @Override public Integer next() {
                if (!hasNext()) return Collections.emptyList().iterator().next();
                else return at++;
              }
              @Override public void remove() { throw new UnsupportedOperationException(); }
            };
          }
        }, executor);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy