interface StaticEventEmitterIteratorOptions
extends StaticEventEmitterOptions
Properties #
#highWaterMark: number | undefined
optional
The high watermark. The emitter is paused every time the size of events being buffered is higher than it.
Supported only on emitters implementing pause()
and resume()
methods.
#lowWaterMark: number | undefined
optional
The low watermark. The emitter is resumed every time the size of events being buffered is lower than it.
Supported only on emitters implementing pause()
and resume()
methods.