How to use Actors and non-isolated in Swift | Swift Concurrency #9

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 พ.ค. 2022
  • Actors are possibly the most important update to come out of Swift Concurrency! They are incredibly powerful and solve Data Race problems in our applications! This is crucially important when working in a multi-threaded environment! In this video we will learn:
    1) The problem that Actors solve
    2) How to solve the problem without Actors
    3) How to solve the problem with Actors!
    Next video: • How to use Global Acto...
    Previous video: • Swift: Struct vs Class...
    🤙 WELCOME BACK 🤙
    WEBSITE: www.swiftful-thinking.com
    DISCORD: / discord
    GITHUB: github.com/SwiftfulThinking/
    SAY THANKS: www.buymeacoffee.com/nicksarno

ความคิดเห็น • 34

  • @3ilz
    @3ilz ปีที่แล้ว +15

    The fact that you are giving this content away for free on TH-cam is amazing! This was an awesome video, didn't know what non isolated was before this

  • @hao-bz
    @hao-bz หลายเดือนก่อน

    Amazing, just learned something new today. Thanks for teaching us!

  • @raymondcordero9718
    @raymondcordero9718 6 หลายเดือนก่อน +1

    Awesome video. Best explanation I’ve seen so far for when to use Actors 🙌🏻

  • @bhuwin6186
    @bhuwin6186 ปีที่แล้ว +1

    Best swift tutorials ever

  • @satyadodda2386
    @satyadodda2386 ปีที่แล้ว +2

    This was amazing.Please post more videos on swift and swiftUI🥺

  • @peterwolf2657
    @peterwolf2657 2 ปีที่แล้ว +4

    Again a nice and easy to understand video. I'm looking forward to the next one.

  • @andresraigoza2082
    @andresraigoza2082 2 ปีที่แล้ว +6

    So valuable content. Thank you so much Nick!!! you are a great teacher

  • @bruhmoment3731
    @bruhmoment3731 2 ปีที่แล้ว +1

    Excellent tutorials. I really wanna watch the last 3 videos in this playlist now!

  • @navikaushal1795
    @navikaushal1795 20 ชั่วโมงที่ผ่านมา

    HI Nick
    Can you please make a video on what are the different ways of designing a data manager class with their pros and cons?

  • @nizamitagiyev705
    @nizamitagiyev705 2 ปีที่แล้ว

    Great explanation! Thank you Nick

  • @josemanuelortizsanchez4983
    @josemanuelortizsanchez4983 ปีที่แล้ว +1

    Good explication of no isolated and example of differences between actors and classes, thanks!

  • @mafiaboy16
    @mafiaboy16 11 หลายเดือนก่อน

    Hi Nick, this was the one i was looking for. Thanks for everything

  • @AndyJMacLeod
    @AndyJMacLeod 3 วันที่ผ่านมา

    19:01 Start of discussion about actors.

  • @bonifacy9511
    @bonifacy9511 ปีที่แล้ว

    You are the best!!❤

  • @vebbis5961
    @vebbis5961 ปีที่แล้ว

    Good explenation. Thank you!

  • @daminsamson204
    @daminsamson204 2 ปีที่แล้ว

    This is awesome 👏

  • @kyunghwankim1269
    @kyunghwankim1269 3 หลายเดือนก่อน

    Wonderful! Thank you 😆

  • @indomitabletr1834
    @indomitabletr1834 ปีที่แล้ว

    awsome as always

  • @user-eg7ep8db8j
    @user-eg7ep8db8j 2 ปีที่แล้ว

    thanks a lot as always~~~!!!

  • @nickfloussov185
    @nickfloussov185 8 หลายเดือนก่อน

    Video is great, but Nick forgot to mention that 'Thread Sanitizer' option is NOT available for ALL devices

  • @user-rs3pf3bt7m
    @user-rs3pf3bt7m ปีที่แล้ว

    Bravo man

  • @lizakryshkovskaya7412
    @lizakryshkovskaya7412 ปีที่แล้ว

    thanks a lot!😍

  • @rooo2000
    @rooo2000 6 หลายเดือนก่อน

    very nice explanation

  • @JackSparrow-ob8kf
    @JackSparrow-ob8kf ปีที่แล้ว

    Thank you for all these swiftUI tutorials...I've seen almost all of them, I learned a lot and I hope you will take other courses....I'm curious what you think also about flutter and if you' have seen it, I noticed some similarities with SwiftUI

  • @alexvaiman4966
    @alexvaiman4966 5 หลายเดือนก่อน

    It's important to notice that we should use a serial queue, which is the default in Swift, but was not the case for Objective-C.

  • @federicoramos
    @federicoramos ปีที่แล้ว

    Hey Nick! great content! Can race conditions occur within the same class by using a task group? How to handle this?

  • @HUNTELAAR11W
    @HUNTELAAR11W 2 ปีที่แล้ว

    Crazy content, do you also do mentoring?

  • @visskiss
    @visskiss ปีที่แล้ว

    Nice. Now use combine to publish the string automagically by subscribing to the timer and mapping it...

  • @tomblah
    @tomblah 2 หลายเดือนก่อน

    11:21 I'm probably misunderstanding, but is this really needed to do on a different background thread? Isn't it this doing it on a different background *queue*? And the queue will, under the hood, choose which thread to use?

  • @matanshaumberg9268
    @matanshaumberg9268 10 หลายเดือนก่อน

    Hi, thanks for the video! Where can the code in the videos be found?

  • @nverabgaryan
    @nverabgaryan 6 หลายเดือนก่อน

    Thanks! Just one question here:
    1. How your code becomes threads safe when you add asynchronous queue ? I think there should be serial queue.
    Could you please explain here? Thanks again for amazing videos

    • @nverabgaryan
      @nverabgaryan 6 หลายเดือนก่อน

      Ahh, I see default init for DespatchQueue returns serial queue

  • @DannyKerbel
    @DannyKerbel ปีที่แล้ว

    I know this wasn't the point of the video but the lock.async closure should have a weak reference to self right?

  • @hashcat5721
    @hashcat5721 ปีที่แล้ว

    In Xcode 14 we get an error as we should .