本文整理匯總了Java中reactor.core.publisher.Flux.create方法的典型用法代碼示例。如果您正苦於以下問題:Java Flux.create方法的具體用法?Java Flux.create怎麽用?Java Flux.create使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類reactor.core.publisher.Flux
的用法示例。
在下文中一共展示了Flux.create方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: test4
import reactor.core.publisher.Flux; //導入方法依賴的package包/類
@Test
public void test4() {
SomeFeed<PriceTick> feed = new SomeFeed<>();
Flux<Object> priceFlux = Flux.create(emitter ->
{
SomeListener l = new SomeListener() {
@Override
public void priceTick(PriceTick event) {
emitter.next(event);
}
@Override
public void error(Throwable throwable) {
emitter.error(throwable);
}
};
feed.register(l);
}, FluxSink.OverflowStrategy.LATEST);
ConnectableFlux<Object> connectableFlux = priceFlux.publish();
connectableFlux.connect();
connectableFlux.subscribe(System.out::println);
}
示例2: test
import reactor.core.publisher.Flux; //導入方法依賴的package包/類
@Test
public void test() throws InterruptedException {
SomeFeed<PriceTick> feed = new SomeFeed<>();
Flux<PriceTick> flux =
Flux.create(emitter ->
{
SomeListener listener = new SomeListener() {
@Override
public void priceTick(PriceTick event) {
emitter.next(event);
if (event.isLast()) {
emitter.complete();
}
}
@Override
public void error(Throwable e) {
emitter.error(e);
}
};
feed.register(listener);
}, FluxSink.OverflowStrategy.LATEST);
ConnectableFlux connectable = flux.publish();
connectable.subscribe(x -> System.out.println("1st " + x));
Thread.sleep(1000);
connectable.subscribe(x -> System.out.println("2nd " + x));
connectable.connect();
}
示例3: findAllCity
import reactor.core.publisher.Flux; //導入方法依賴的package包/類
@RequestMapping(method = RequestMethod.GET)
public Flux<City> findAllCity() {
return Flux.create(cityFluxSink -> {
cityService.findAllCity().forEach(city -> {
cityFluxSink.next(city);
});
cityFluxSink.complete();
});
}
示例4: getTimeUpdates
import reactor.core.publisher.Flux; //導入方法依賴的package包/類
/**
* Get the {@link Flux} on which time updates are published.
*
* @return the {@code Flux<TimeInfo>} to receive time updates
*/
public Flux<TimeInfo> getTimeUpdates() {
return Flux.create(sink -> {
synchronized (NTPClock.this) {
timeInfoSinks.add(sink);
}
});
}
示例5: ReactorEventAdapter
import reactor.core.publisher.Flux; //導入方法依賴的package包/類
public ReactorEventAdapter(EventDispatcher dispatcher) {
this.dispatcher = dispatcher;
flux = Flux.create(new IListenerAdaptor(dispatcher), FluxSink.OverflowStrategy.BUFFER);
}