org.reactivestreams.tck.flow.support.InfiniteHelperPublisher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reactive-streams-tck Show documentation
Show all versions of reactive-streams-tck Show documentation
A Protocol for Asynchronous Non-Blocking Data Sequence
The newest version!
/***************************************************
* Licensed under MIT No Attribution (SPDX: MIT-0) *
***************************************************/
package org.reactivestreams.tck.flow.support;
import org.reactivestreams.example.unicast.AsyncIterablePublisher;
import java.util.Iterator;
import java.util.concurrent.Executor;
public class InfiniteHelperPublisher extends AsyncIterablePublisher {
public InfiniteHelperPublisher(final Function create, 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 T next() {
try {
return create.apply(at++); // Wraps around on overflow
} catch (Throwable t) {
throw new IllegalStateException(
String.format("Failed to create element in %s for id %s!", getClass().getSimpleName(), at - 1), t);
}
}
@Override public void remove() { throw new UnsupportedOperationException(); }
};
}
}, executor);
}
}