4

For me The DART Isolate looks like a Thread (Java/C#) with a different terminology. In which aspect Isolate differs from a Thread?

1 Answer 1

7

Threads use shared memory, isolates don't.

For example, the following pseudocode in Java/C#

class MyClass {
  static int count = 0;
}

// Thread 1: 
MyClass.count++;
print(MyClass.count); // 1;

// Thread 2:
MyClass.count++;
print(MyClass.count); // 2;

This also runs the risk of the shared memory being modified simultaneously by both threads.

Whereas in Dart,

class MyClass {
  static int count = 0;
}

// Isolate 1: 
MyClass.count++;
print(MyClass.count); // 1;

// Isolate 2:
MyClass.count++;
print(MyClass.count); // 1;

Isolates are isolated from each other. The only way to communicate between them is to pass messages. One isolate can listen for callbacks from the other.

Check out the docs here including the "isolate concepts" section.

Sign up to request clarification or add additional context in comments.

1 Comment

Hi, how can we view isolates from an operating system perspective? Is it similar to creating a new sub process?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.