ConnectableStream<T> constructor

ConnectableStream<T>(
  1. Stream<T> stream
)

Constructs a Stream which only begins emitting events when the connect method is called.

Implementation

ConnectableStream(Stream<T> stream) : super(stream);