Uses of Class
io.vertx.rxjava.core.streams.Pump
-
Packages that use Pump Package Description io.vertx.rxjava.core.streams -
-
Uses of Pump in io.vertx.rxjava.core.streams
Fields in io.vertx.rxjava.core.streams with type parameters of type Pump Modifier and Type Field Description static TypeArg<Pump>
Pump. __TYPE_ARG
Methods in io.vertx.rxjava.core.streams that return Pump Modifier and Type Method Description static Pump
Pump. newInstance(Pump arg)
static <T> Pump
Pump. pump(ReadStream<T> rs, WriteStream<T> ws)
Create a newPump
with the givenReadStream
andWriteStream
static <T> Pump
Pump. pump(ReadStream<T> rs, WriteStream<T> ws, int writeQueueMaxSize)
Create a newPump
with the givenReadStream
andWriteStream
andwriteQueueMaxSize
static <T> Pump
Pump. pump(rx.Observable<T> rs, WriteStream<T> ws)
Create a newPump
with the givenReadStream
andWriteStream
static <T> Pump
Pump. pump(rx.Observable<T> rs, WriteStream<T> ws, int writeQueueMaxSize)
Create a newPump
with the givenReadStream
andWriteStream
andwriteQueueMaxSize
Pump
Pump. setWriteQueueMaxSize(int maxSize)
Set the write queue max size tomaxSize
Pump
Pump. start()
Start the Pump.Pump
Pump. stop()
Stop the Pump.
-