fut_map 0.0.2 copy "fut_map: ^0.0.2" to clipboard
fut_map: ^0.0.2 copied to clipboard

outdated

Concurrent futures map. Allows setting a concurrency level when mapping an iterable with futures

fut_map #

Description #

Map over futures in parallel.

The problem with Future.wait is that you have to start all futures at the same time. fut_map allows you to control the concurrency over a list of futures.

Usage #

import 'dart:math';
import 'package:fut_map/fut_map.dart';

Future<int> delayedSquare(int x) async {
    await Future.delayed(Duration(milliseconds: Random().nextInt(2000)));
    return x * x;
}

void main()  {
  fMap([1,2,3,4,5,6,7,8,9], delayedSquare, parallel: 3).then((result) {
    // Iterable<int> result;
    print("Result $result");
  });
}
6
likes
0
points
18
downloads

Publisher

verified publisherbekind.software

Weekly Downloads

Concurrent futures map. Allows setting a concurrency level when mapping an iterable with futures

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on fut_map