-
Hi, I have been reading the documentation for this repository and it left me wondering: is this planned to introduce a feature to allow several tasks to consume the same `AsyncSequence`?
_If this i…
-
I haven’t tried the new betas yet, but I imagine the prevalence of `@MainActor` in `iOS 15` will bring issues to current uses of `ReactiveSwift`.
Specifically, I imagine you won’t be able to just do …
-
We need a way to imperatively pipe events into a AsyncSequence same asi Subjects from Combine did, or Kotlin's MutableState/SharedFlow
AsynchChannel feels like a low level primitive to be used for …
-
# Using AsyncSequence in Swift • Andy Ibanez
[https://www.andyibanez.com/posts/using-asyncsequence-in-swift/](https://www.andyibanez.com/posts/using-asyncsequence-in-swift/)
-
### Describe the issue
Unable to send multiple SQL commands in one `simpleQuery`.
### Vapor version
1.21.5
### Operating system and version
macOS 15
### Swift version
swift-driver…
-
**Description**
I'm getting a warning on this code:
```swift
Task {
for await _ in NotificationCenter.default.notifications(named: await UIApplication.didEnterBackgroundNotification) {
…
-
### Reproduction
```swift
import Combine
@MainActor
final class Data {
enum E {}
@Published public private(set) var data: E?
public var stream: AsyncPublisher {
$data.values
…
-
### Description
When compiling the code below I get warnings:
```console
$ swiftc test.swift
:0: warning: no 'async' operations occur within 'await' expression
```
Since this is iterating ov…
-
>Discover the latest open source Swift package from Apple: Swift Async Algorithms. We'll explore algorithms from this package that you can use with AsyncSequence, including zip, merge, and throttle. F…
-
Please look below example of async test. Test with `XCTAssertEqual` works as expected but same test with `assertSnapshot` crashes.
What's the way to use `assertSnapshot` in async test?
```
stru…