dart:isolate library

Concurrent programming using isolates: independent workers that are similar to threads but don't share memory, communicating only via messages.

Concurrent programming using isolates: independent workers that are similar to threads but don't share memory, communicating only via messages.

Classes

IsolateSpawnException
Thrown when an isolate cannot be created.
Isolate
An isolated Dart execution context.
SendPort
Sends messages to its ReceivePorts.
ReceivePort
Together with SendPort, the only means of communication between isolates.
RawReceivePort
RemoteError
Description of an error from another isolate.
Capability
An unforgeable object that comes back as equal when passed through other isolates.

Exceptions/Errors

IsolateSpawnException
Thrown when an isolate cannot be created.
RemoteError
Description of an error from another isolate.