executor 2.0.0 copy "executor: ^2.0.0" to clipboard
executor: ^2.0.0 copied to clipboard

outdated

Executes async tasks with a configurable maximum concurrency and rate.

example/example.dart

// Copyright (c) 2017, Agilord. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.

import 'dart:async';

import 'package:executor/executor.dart';

Future main() async {
  Executor executor = new Executor(concurrency: 10);
  // only 10 of them will be running at a time
  for (int i = 0; i < 20; i++) {
    executor.scheduleTask(() async {
      // await longDatabaseTask()
      // await anotherProcessing()
    });
  }
}
26
likes
0
pub points
85%
popularity

Publisher

verified publisheragilord.com

Executes async tasks with a configurable maximum concurrency and rate.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on executor