go 1.0.3 copy "go: ^1.0.3" to clipboard
go: ^1.0.3 copied to clipboard

outdatedDart 1 only

Simplest API to multi process.

go #

Seamlessly launch isolates to perform side jobs.

Parallelize a task #

import 'package:go/go.dart';

int twice(int a) => a * 2;

main() async {
  print(await go(twice, 5));
}

Convert a task to remote task #

import 'package:go/go.dart';

int twice(int a) => a * 2;

main() async {
  Task twiceTask = remoteTask(twice);
  print(await twiceTask(5));
}

Parallel map of Iterable #

import 'package:go/go.dart';

int twice(int a) => a * 2;

main() async {
  print(await goMap(twice, new List.generate(10, (int d) => d + 1)));
}

Same task many times #

Executes same task many times with same parameters.

int twice(int a) => a * 2;

main() async {
  print(await goMany(twice, 5, 20));
}
0
likes
0
pub points
60%
popularity

Publisher

unverified uploader

Simplest API to multi process.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on go