#swiftconcurrency wyniki wyszukiwania
Today I learned that Swift Concurrency weighs about 7MB and has its own place inside the IPA we ship. #swift #swiftconcurrency

Cut your network trips with a lightweight async/await Swift cache! Configure in two lines, fetch any binary blob, and let disk caching handle the rest. Repo: github.com/bsjurs1/FileCa… #SwiftLang #iOSDev #SwiftConcurrency #AsyncAwait

I felt like @Apple wasn't very clear on how to run concurrent code on another thread using async/await. For those of you wondering, this is how: #Swift #SwiftConcurrency #Concurrency #WWDC21 #Apple #iosdev

Was revisiting WWDC sessions on Swift concurrency and just couldn't help... #Swift #SwiftConcurrency #WWDC
I received a #Swift project with a lot of callback hell blocks, where completion handlers were wrapped into another 3 or more times. I decided to refactor with #SwiftConcurrency: withCheckedThrowingContinuation. Does anyone found issues with using it? I do, see the thread below:

I have 3rd party lib that exposes API with completion handlers that in some scenarios never be called. So I came up with a Timer workaround to not leak continuation while using withCheckedContinuation. #SwiftConcurrency #Swift #iosdev

Modern Swift Concurrency simplifies asynchronous programming with async/await and structured concurrency. It lets you write cleaner, safer code by naturally handling tasks, errors, and cancellations while boosting app responsiveness. #Swift #SwiftConcurrency

Inside task 'a', I let it sleep for 3s and that task was cancelled during its sleep time so it should throw an exception, but it didn't. What's happening here. Can someone explain? #iosdev #swift #swiftconcurrency

Swiftここ最近離れてたから Concurrencyについてけてないんだけど この辺よんどけばある程度大丈夫かな?? それともだいぶアップデートとかされてるのかな?🤨 #Swift #SwiftConcurrency

#SwiftConcurrency viewDidLoadとかはasyncつけれないから直接async関数を呼べない んでTaskか、Task.detachedブロックで呼ばないといけないけど、Task.detachedだとasyncじゃない関数にもawait指定が必要になっちゃう なんで?、の答え これ、ググると答え見つけるの大変だよなぁGPT様ありがてぇ

So both "async let" and "task group" doesn't run tasks in the same order that they are added 🤔 #swift #swiftconcurrency


I believe I must be missing something, but I just have too little experience with #SwiftConcurrency, I guess. 😔 #BuildInPublic #IndieHacker #iOSDev #IndieDev
Hello all @RxSwiftLang people 🤔 #SwiftAsyncAwait #Swift #SwiftConcurrency Really waiting for AsyncStream to be ready :)

#SwiftConcurrency 試しに個人開発のコードで試してみたらすごく簡単にできた👍🏻 驚いたのは、関数名が一緒でもasyncつければ別物と認識してくれるところ わざわざ命名し直さなくてもいい👌 一気に直さないでも徐々に入れ替えもできるように配慮されてるのね🤔


Swift Concurrency Reimagined— modern power for every Swift developer. 👉 A deep dive: youtu.be/yPV62lwT398 #Swift #iOSDev #SwiftConcurrency

I believe I must be missing something, but I just have too little experience with #SwiftConcurrency, I guess. 😔 #BuildInPublic #IndieHacker #iOSDev #IndieDev
Cut your network trips with a lightweight async/await Swift cache! Configure in two lines, fetch any binary blob, and let disk caching handle the rest. Repo: github.com/bsjurs1/FileCa… #SwiftLang #iOSDev #SwiftConcurrency #AsyncAwait

TCAのEffect、結局のところStoreTaskのBuilder + Swift Task制御レイヤーを抽象化したものが本質では? 🤔 #TCA #Effect #SwiftConcurrency
🧩 Swift 6 并发关键字傻傻分不清? 本文将梳理 Sendable、@unchecked Sendable、@Sendable、sending 和 nonsending 的区别与使用场景。 一张表格看懂所有区别 📊 👉 fatbobman.com/zh/posts/senda… #Swift #iOSDev #SwiftConcurrency
🧩 Confused by Swift 6 concurrency keywords? New article breaks down Sendable, `@unchecked Sendable`, `@Sendable`, sending, and nonsending - their differences and use cases. One table to understand them all 📊 👉 fatbobman.com/en/posts/senda… #Swift #iOSDev #SwiftConcurrency
fatbobman.com
Swift 6 - Sendable, @unchecked Sendable, @Sendable, sending and nonsending
Explore how Swift 6 uses Sendable, @Sendable, sending, and nonsending to enforce concurrency safety, ensure thread-safe data transfer, and prevent race conditions.
Swift 6 turned my Sendable warnings into compiler errors and I'm not mad about it 😤 Turns out ignoring concurrency safety wasn't a sustainable strategy. Who knew? 🤷♂️ Wrote down everything I wish I knew about Sendable swift-pal.com/understanding-… #Swift #iOS #SwiftConcurrency
swift-pal.com
Understanding @Sendable: Swift 6 Changes, Interview Prep, and Real Examples
Master @Sendable protocol: value types, actors, generics, and the interview questions that stump developers
Swift Concurrency Reimagined— modern power for every Swift developer. 👉 A deep dive: youtu.be/yPV62lwT398 #Swift #iOSDev #SwiftConcurrency

仕事の方のアプリで #Swift6 対応がやっとビルド通った。#SwiftConcurrency 風にリライトしながらだったので、#テスト しっかりしないとね。 ただ、持続可能なアプリにできればなぁとは考える次第。
📣 #iOSDev PSA: new #Xcode26 projects default to Main Actor isolation, which leads to errors with Sendable types ⚠️ Fixes: 1: Change default isolation 2: Mark type nonisolated 3: Ignore #SwiftConcurrency 🫣 Matt has a great post on default isolation: massicotte.org/default-isolat…



Don’t miss “What’s New in Swift Concurrency” with Matt Massicotte at the One More Thing Conference—this Tuesday at 10 AM! Register now: buff.ly/5rdbRWU #SwiftConcurrency #Swift #OMTConf

Modern Swift Concurrency simplifies asynchronous programming with async/await and structured concurrency. It lets you write cleaner, safer code by naturally handling tasks, errors, and cancellations while boosting app responsiveness. #Swift #SwiftConcurrency

Today I learned that Swift Concurrency weighs about 7MB and has its own place inside the IPA we ship. #swift #swiftconcurrency

Cut your network trips with a lightweight async/await Swift cache! Configure in two lines, fetch any binary blob, and let disk caching handle the rest. Repo: github.com/bsjurs1/FileCa… #SwiftLang #iOSDev #SwiftConcurrency #AsyncAwait

I felt like @Apple wasn't very clear on how to run concurrent code on another thread using async/await. For those of you wondering, this is how: #Swift #SwiftConcurrency #Concurrency #WWDC21 #Apple #iosdev

#SwiftConcurrency viewDidLoadとかはasyncつけれないから直接async関数を呼べない んでTaskか、Task.detachedブロックで呼ばないといけないけど、Task.detachedだとasyncじゃない関数にもawait指定が必要になっちゃう なんで?、の答え これ、ググると答え見つけるの大変だよなぁGPT様ありがてぇ

Swiftここ最近離れてたから Concurrencyについてけてないんだけど この辺よんどけばある程度大丈夫かな?? それともだいぶアップデートとかされてるのかな?🤨 #Swift #SwiftConcurrency

I have 3rd party lib that exposes API with completion handlers that in some scenarios never be called. So I came up with a Timer workaround to not leak continuation while using withCheckedContinuation. #SwiftConcurrency #Swift #iosdev

#SwiftConcurrency 試しに個人開発のコードで試してみたらすごく簡単にできた👍🏻 驚いたのは、関数名が一緒でもasyncつければ別物と認識してくれるところ わざわざ命名し直さなくてもいい👌 一気に直さないでも徐々に入れ替えもできるように配慮されてるのね🤔


Inside task 'a', I let it sleep for 3s and that task was cancelled during its sleep time so it should throw an exception, but it didn't. What's happening here. Can someone explain? #iosdev #swift #swiftconcurrency

I received a #Swift project with a lot of callback hell blocks, where completion handlers were wrapped into another 3 or more times. I decided to refactor with #SwiftConcurrency: withCheckedThrowingContinuation. Does anyone found issues with using it? I do, see the thread below:

#SwiftConcurrency Isolation Domainの説明はattached Imageの様なのが良いんじゃないだろうか

土曜日に話したのを公開しました!Swift 6はデータ競合が起こる可能性のあるコードをコンパイルエラーにしてくれますが、どのようにそれを検出しているのか感覚的に理解できないとコードが書きづらいので、ライブコーディングを交えて説明しました。 #swiftzoomin youtu.be/AUcn2y2jjNs?si…

Swift Concurrency Reimagined— modern power for every Swift developer. 👉 A deep dive: youtu.be/yPV62lwT398 #Swift #iOSDev #SwiftConcurrency

【#アーキテクチャ紹介】 ローソンデジタルイノベーションの開発環境🫙 クーポン、アプリ予約、スマホレジなどの機能があるローソンアプリの開発📱✨ iOSは、#RxSwift から #SwiftConcurrency や #Combine への移行を進めています。 (✏️開発マネージャー阪口さん) techblog.ldi.co.jp/entry/2023/09/…

Is there a way to cleanly async let functions that has no return (aka return Void) ? I can declare Void variables. But compiler seems to be unhappy to infer a Void variable. Declaring `let a: ()` or `let a: Void` all the time is not very tidy :( #swift #ios #swiftconcurrency

Something went wrong.
Something went wrong.
United States Trends
- 1. Flacco 88.4K posts
- 2. Bengals 82.4K posts
- 3. Bengals 82.4K posts
- 4. #clubironmouse 3,618 posts
- 5. #Talisman 8,755 posts
- 6. Tomlin 22.4K posts
- 7. #criticalrolespoilers 8,714 posts
- 8. #SEVENTEEN_NEW_IN_LA 53.8K posts
- 9. yeonjun 119K posts
- 10. #WhoDidTheBody 1,653 posts
- 11. Ramsey 19.7K posts
- 12. Cuomo 89.4K posts
- 13. Chase 107K posts
- 14. Chase 107K posts
- 15. Teryl Austin 2,885 posts
- 16. Xenoverse 3 1,038 posts
- 17. Tame Impala 5,977 posts
- 18. Pence 76.5K posts
- 19. Max Scherzer 15K posts
- 20. Sliwa 39.2K posts