jed_fox1’s avatarjed_fox1’s Twitter Archive — № 1,065

  1. …in reply to @stroughtonsmith
    @stroughtonsmith I see them as two different (but related) things. Async/await is a replacement for completion handlers. Combine is a replacement for delegates, subscriptions, and notifications.
    1. …in reply to @jed_fox1
      @stroughtonsmith Also, although the callbacks you pass into Combine aren’t necessarily called right away, actions are triggered synchronously by default. If you mutate an @ Published property that you’ve added a .sink to, the sink will be called before the mutation operation returns.