#swiftconcurrency wyniki wyszukiwania

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

serjpetrachkov's tweet image. 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

bsjurs1's tweet image. 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

Xaxxus's tweet image. 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


Using generics in #SwiftConcurrency code feels so native and smooth. #swift #iosdev

jurasic_str's tweet image. Using generics in #SwiftConcurrency code feels so native and smooth.
#swift #iosdev

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:

jurasic_str's tweet image. 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

jurasic_str's tweet image. 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

derekcoder_'s tweet image. 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

KyawTheMonkey's tweet image. 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

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

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

atagon's tweet image. #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

hlungx's tweet image. So both "async let" and "task group" doesn't run tasks in the same order that they are added 🤔 
#swift #swiftconcurrency
hlungx's tweet image. 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 :)

freak4pc's tweet image. Hello all @RxSwiftLang people 🤔 #SwiftAsyncAwait #Swift #SwiftConcurrency 

Really waiting for AsyncStream to be ready :)

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

Harx02663971's tweet image. #SwiftConcurrency

試しに個人開発のコードで試してみたらすごく簡単にできた👍🏻

驚いたのは、関数名が一緒でもasyncつければ別物と認識してくれるところ
わざわざ命名し直さなくてもいい👌
一気に直さないでも徐々に入れ替えもできるように配慮されてるのね🤔
Harx02663971's tweet image. #SwiftConcurrency

試しに個人開発のコードで試してみたらすごく簡単にできた👍🏻

驚いたのは、関数名が一緒でもasyncつければ別物と認識してくれるところ
わざわざ命名し直さなくてもいい👌
一気に直さないでも徐々に入れ替えもできるように配慮されてるのね🤔

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

iosDev_ramit's tweet image. 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

bsjurs1's tweet image. 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


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

iosDev_ramit's tweet image. 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…

manuel_kehl's tweet image. 📣 #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…
manuel_kehl's tweet image. 📣 #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…
manuel_kehl's tweet image. 📣 #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

omt_conf's tweet image. 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

derekcoder_'s tweet image. 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

Brak wyników dla „#swiftconcurrency”

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

serjpetrachkov's tweet image. 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

bsjurs1's tweet image. 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

Great to have you back @freak4pc ! This year speaking on #SwiftConcurrency . #SwiftHeroes22 #iOSDev

swiftheroes_it's tweet image. Great to have you back @freak4pc ! This year speaking on #SwiftConcurrency .
#SwiftHeroes22 #iOSDev

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

Xaxxus's tweet image. 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

Using generics in #SwiftConcurrency code feels so native and smooth. #swift #iosdev

jurasic_str's tweet image. Using generics in #SwiftConcurrency code feels so native and smooth.
#swift #iosdev

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

atagon's tweet image. #SwiftConcurrency

viewDidLoadとかはasyncつけれないから直接async関数を呼べない

んでTaskか、Task.detachedブロックで呼ばないといけないけど、Task.detachedだとasyncじゃない関数にもawait指定が必要になっちゃう

なんで?、の答え

これ、ググると答え見つけるの大変だよなぁGPT様ありがてぇ

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

ma12441469's tweet image. 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

jurasic_str's tweet image. 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つければ別物と認識してくれるところ わざわざ命名し直さなくてもいい👌 一気に直さないでも徐々に入れ替えもできるように配慮されてるのね🤔

Harx02663971's tweet image. #SwiftConcurrency

試しに個人開発のコードで試してみたらすごく簡単にできた👍🏻

驚いたのは、関数名が一緒でもasyncつければ別物と認識してくれるところ
わざわざ命名し直さなくてもいい👌
一気に直さないでも徐々に入れ替えもできるように配慮されてるのね🤔
Harx02663971's tweet image. #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

KyawTheMonkey's tweet image. 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:

jurasic_str's tweet image. 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の様なのが良いんじゃないだろうか

tana00's tweet image. #SwiftConcurrency
Isolation Domainの説明はattached Imageの様なのが良いんじゃないだろうか

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

koher's tweet 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

iosDev_ramit's tweet image. 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/…

findy_tools's tweet image. 【#アーキテクチャ紹介】
ローソンデジタルイノベーションの開発環境🫙

クーポン、アプリ予約、スマホレジなどの機能があるローソンアプリの開発📱✨
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

hlungx's tweet image. 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

Loading...

Something went wrong.


Something went wrong.


United States Trends