RetryWhenStream<T>  constructor 
      
      RetryWhenStream<T> (
    
- Stream<T> streamFactory(),
- Stream<void> retryWhenFactory(- Object error,
- StackTrace stackTrace
 
Constructs a Stream that will recreate and re-listen to the source Stream (created by the provided factory method). The retry will trigger whenever the Stream created by the retryWhen factory emits and event.
Implementation
RetryWhenStream(this.streamFactory, this.retryWhenFactory);