Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 파이썬
- flutter bloc
- 롤토체스 api dart
- swift concurrency
- lol api dart
- 롤 api dart
- valorant api dart
- dart new
- flutter
- 파이썬 부동소수점
- docker overview
- swift 동시성
- Architectural overview
- 발로란트 api dart
- AnimationController
- tft api dart
- leetcode dart
- flutter widget
- PlatformException(sign_in_failed
- flutter ios 폴더
- generate parentheses dart
- dart
- dart.dev
- dart new 키워드
- flutter android 폴더
- widget
- keychain error
- com.google.GIDSignIn
- flutter statefulwidget
- riot api dart
Archives
- Today
- Total
목록isolate (1)
aspe

Dart는 async-await, isolates나 Future나 Stream 같은 classes로 concurrent programming을 지원합니다. 이 페이지에서는 async-await, Future, Stream에 대해 전반적인 설명을 합니다.(주로 isolates에 대해) 앱 안에서, 모든 Dart 코드는 isolate 안에서 작동됩니다. 각각의 Dart isolate는 하나의 실행 쓰레드를 가지고, 서로 객체들을 공유하지 않습니다. 서로 통신하고 싶다면, isolates는 message passing을 사용합니다. 비록 Dart의 isolate 모델은 운영체제가 제공하는 프로세스, 스레드 같은 기본 요소로 구현되어 있지만, Dart VM의 이러한 기본 요소의 사용은 이 페이지에서 다루지 않는..
Dart/API
2023. 2. 17. 13:51