RPCAsyncSequence.swift 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright 2023, gRPC Authors All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. /// A type-erasing `AsyncSequence`.
  17. @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
  18. public struct RPCAsyncSequence<Element>: AsyncSequence, Sendable {
  19. private let _makeAsyncIterator: @Sendable () -> AsyncIterator
  20. /// Creates an ``RPCAsyncSequence`` by wrapping another `AsyncSequence`.
  21. public init<S: AsyncSequence>(wrapping other: S) where S.Element == Element {
  22. self._makeAsyncIterator = {
  23. AsyncIterator(wrapping: other.makeAsyncIterator())
  24. }
  25. }
  26. public func makeAsyncIterator() -> AsyncIterator {
  27. self._makeAsyncIterator()
  28. }
  29. public struct AsyncIterator: AsyncIteratorProtocol {
  30. private var iterator: any AsyncIteratorProtocol
  31. fileprivate init<Iterator>(
  32. wrapping other: Iterator
  33. ) where Iterator: AsyncIteratorProtocol, Iterator.Element == Element {
  34. self.iterator = other
  35. }
  36. public mutating func next() async throws -> Element? {
  37. return try await self.iterator.next() as? Element
  38. }
  39. }
  40. }
  41. @available(*, unavailable)
  42. extension RPCAsyncSequence.AsyncIterator: Sendable {}