You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actor는 Swift 프로그래밍을 할 때 가변 상태를 보호하기 위해 사용한다
Class, Struct와 비슷하게 사용하면서 Actor가 한 번에 하나의 일만 수행하도록 만들 수 있다
여러 스레드에서 접근했을 때 발생할 수 있는 여러 동시성 문제들을 해결하여 Data race에 대한 방지를 할 수 있다
Data race : 2개 이상의 개별 쓰레드가 동시에 동일한 데이터에 접근하고, 이러한 접근 중 하나 이상이 write일 때 발생한다
The text was updated successfully, but these errors were encountered:
Actor는 Swift 프로그래밍을 할 때 가변 상태를 보호하기 위해 사용한다
Class, Struct와 비슷하게 사용하면서 Actor가 한 번에 하나의 일만 수행하도록 만들 수 있다
여러 스레드에서 접근했을 때 발생할 수 있는 여러 동시성 문제들을 해결하여 Data race에 대한 방지를 할 수 있다
The text was updated successfully, but these errors were encountered: