getChangeStream method

Stream<Tuple2<K, V?>> getChangeStream()

Get the change Stream for this database.

All modifications to the database contents will be emitted by the returned Stream.

Implementation

Stream<Tuple2<K, V?>> getChangeStream() {
  return _streamController.stream;
}