程序包 | 说明 |
---|---|
reactor.core.publisher |
限定符和类型 | 方法和说明 |
---|---|
static <E> EmitterProcessor<E> |
EmitterProcessor.create()
已过时。
use
Sinks.many().multicast().onBackpressureBuffer()
(or the unsafe variant if you're sure about external synchronization). To be removed in 3.5. |
static <E> EmitterProcessor<E> |
EmitterProcessor.create(boolean autoCancel)
已过时。
use
Sinks.many().multicast().onBackpressureBuffer(bufferSize, boolean)
using the old default of Queues.SMALL_BUFFER_SIZE for the bufferSize
(or the unsafe variant if you're sure about external synchronization). To be removed in 3.5. |
static <E> EmitterProcessor<E> |
EmitterProcessor.create(int bufferSize)
已过时。
use
Sinks.many().multicast().onBackpressureBuffer(bufferSize)
(or the unsafe variant if you're sure about external synchronization). To be removed in 3.5. |
static <E> EmitterProcessor<E> |
EmitterProcessor.create(int bufferSize,
boolean autoCancel)
已过时。
use
Sinks.many().multicast().onBackpressureBuffer(bufferSize, autoCancel)
(or the unsafe variant if you're sure about external synchronization). To be removed in 3.5. |