![]() |
VOOZH | about |
Dart was traditionally designed to create single-page applications. We also know that most computers, even mobile platforms, have multi-core CPUs. To take advantage of all those cores, developers traditionally use shared-memory threads running concurrently. However, shared-state concurrency is error-prone and can lead to complicated code. Instead of threads, all Dart code runs inside of isolates. Each isolate has its memory heap, ensuring that no isolate's state is accessible from any other isolate.
The isolates and threads are different than each other as in threads memory are shared whereas in isolates it is not. Moreover isolates talk to each other via passing messages.
To use isolates, you have to add the below statement in your program code.
import 'dart:isolate';To create an isolate, we make use of the .spawn() method in Dart.
Syntax:
Isolate isolate_name = await Isolate.spawn( parameter );This parameter represents the port that will receive the message back.
To destroy the isolate, we make use of the .kill() method in Dart.
Syntax:
isolate_name.kill( parameters );We generally use spawn() and kill() together in a single program.
Example:
Output:
--------------Starting Geek Isolate--------------
Press enter key to quit
Welcome to GeeksForGeeks 1
Welcome to GeeksForGeeks 2
Welcome to GeeksForGeeks 3
Welcome to GeeksForGeeks 4
Welcome to GeeksForGeeks 5
Welcome to GeeksForGeeks 6
Welcome to GeeksForGeeks 7
--------------Stopping Geek Isolate--------------
GoodBye Geek!
Hitting enter after seventh output.