VendorDictionaryEntriesStream<V> constructor

VendorDictionaryEntriesStream<V>(
  1. EntriesStreamGenerator<V> generator
)

Create an instant, ready-to-use VendorDictionaryEntriesStream with directly apply generator, which stream DictionaryEntry in Record form.

It only suitable for temprorary implementations, for generating DictionaryEntry from the same sources or allow store as constant, please extends VendorDictionaryEntriesStreamBase instead.

Implementation

factory VendorDictionaryEntriesStream(EntriesStreamGenerator<V> generator) =
    _InstantVendorDictionaryEntriesStream;