Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
protect_mutable_state_in_concurrent_Swift_appli...
Search
ohayoukenchan
June 25, 2021
Programming
0
1.2k
protect_mutable_state_in_concurrent_Swift_applications.pdf
ohayoukenchan
June 25, 2021
Tweet
Share
More Decks by ohayoukenchan
See All by ohayoukenchan
iOSDC2021 知られざる課金ステータス
ohayoukenchan
1
7.5k
iOSDC2018_ohayou_kenchan.pdf
ohayoukenchan
4
4k
Other Decks in Programming
See All in Programming
Rails 8 Frontend: 10 commandments & 7 deadly sins in 2025
yshmarov
1
620
Compose Multiplatform과 Ktor로 플랫폼의 경계를 넘어보자
kwakeuijin
0
250
Beyond Laravel Octane - Hyperf for Laravel Artisans
albertcht
1
120
Memory API: Patterns, Use Cases, and Performance
josepaumard
1
130
Kotlin Multiplatform at Stable and Beyond (Kotlin Vienna, October 2024)
zsmb
2
340
AWS CDKを用いたセキュアなCI/CDパイプラインの構築 / Build a secure CI/CD pipeline using AWS CDK
seike460
PRO
3
600
データサイエンスのフルサイクル開発を実現する機械学習パイプライン
xcnkx
2
500
Go製CLIツールGatling Commanderによる負荷試験実施の自動化
okmtz
3
690
AWS Lambda Web Adapterを活用する新しいサーバーレスの実装パターン
tmokmss
6
5.9k
CSC305 Lecture 01
javiergs
PRO
1
150
VS Code extension: ドラッグ&ドロップでファイルを並び替える
ttrace
0
160
2024-10-02 dev2next - Application Observability like you've never heard before
jonatan_ivanov
0
170
Featured
See All Featured
Thoughts on Productivity
jonyablonski
67
4.2k
GraphQLの誤解/rethinking-graphql
sonatard
65
9.9k
Unsuck your backbone
ammeep
668
57k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
45
2k
Typedesign – Prime Four
hannesfritz
39
2.3k
Rebuilding a faster, lazier Slack
samanthasiow
79
8.6k
The Mythical Team-Month
searls
218
43k
What's in a price? How to price your products and services
michaelherold
243
11k
Building a Modern Day E-commerce SEO Strategy
aleyda
38
6.8k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9k
Bootstrapping a Software Product
garrettdimon
PRO
304
110k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
159
15k
Transcript
protect mutable state in concurrent Swift applications sento_kun (ohayoukenchan) ママリiOSエンジニア募集中だよ
この話の流れ - data races - actors in Swift(Actorってなぁに) - actor
reentrancy(再入性) - actor isolation(Actorの分離) - main actor(メインスレッドでの非同期処理)
いきなりですが Data Races とは?
None
共有された 可変型の状態が必要 とされる場合がある
共有された可変型の状態 をうまく同期させたい
actors in Swift
Actors - Actorsは独自の状態を持ち、その状態は他のプログラムから隔離されて います。 - Actorsにアクセスするには、Actorsを経由するしかありません。 - Actorsを経由するときはいつでも、Actorsの同期メカニズムによって、他の コードが同時にActorsの状態にアクセスしないことが保証されます。 -
ロックやシリアルディスパッチキューを手動で使用したときに得られるのと 同じ相互排除特性が得られます
Data Races データ競合(data race)は、マルチスレッド ・プログラム実装上の問題
One will get there first, and the other will have
to wait its turn.
actors in Swift
Actor reentrancy
actors in Swift
None
Actor Isolation
protocol conformances
Await
Await
None
None
Closures
None
None
actor isolation and data
None
None
Sendable
None
None
None
Main Actor
thinking about main thread
None
None
まとめもりー - mutableな状態への同時アクセスを防ぐことでデータ競合を防ぐ - value semantic(letとかstruct)みたいなimmutableなデータと Actors(mutable な状態への同時アクセスできる)を使って非同期処理 を設計しよう -
Actorの分離(内側にあるか外側にあるか)を考慮する - メインスレッドで非同期処理をすることを保証するため DispatchQueue.mainのかわりにMainActorを使う
おわり
Data Races データ競合(data race)は、マルチスレッド ・プログラム実装上の問題