actor_system 0.9.6 actor_system: ^0.9.6 copied to clipboard
An implementation of the actor model in the Dart language. An actor processes only one message at a time, even if the processing is asynchronous.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add actor_system
With Flutter:
$ flutter pub add actor_system
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
actor_system: ^0.9.6
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:actor_system/actor_system.dart';