A Dart library for working with large numbers of Isolates.
Usage
A simple usage example:
import 'package:tribbles/tribbles.dart';
void hi(String mesg) {
print('tribble says: $mesg');
}
main() {
final tribble = Tribble(hi);
}
See the sample code for a more completed example of using Tribble.
Features and bugs
Please file feature requests and bugs at the issue tracker.
Libraries
- tribbles
- Tibbles wraps the Isolate API to try to make it easier to manage large numbers of Isolates and communication between them.