fuego v8.2.0 Release Notes

Release Date: 2019-08-18 // over 4 years ago
  • 🚀 This release implements the new orderly concurrency model to Stream.FlatMap.

    Example:

    NewStream(someChannel).Concurrent(300).FlatMap(someStreamFunction)
    

    or indeed:

    NewConcurrentStream(someChannel, 300).FlatMap(someStreamFunction)