Проверка шаблона шины для iOS
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

Bus.Debounce.swift 692B

11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
11 ay önce
12345678910111213141516171819202122232425262728293031
  1. import Combine
  2. public extension Bus {
  3. final class Debounce<Src, Dst> {
  4. let v = PassthroughSubject<Src, Never>()
  5. var subscriptions = [AnyCancellable]()
  6. public init(
  7. _ handler: @escaping ((Src) -> Dst?),
  8. _ sec: Double,
  9. _ src: String,
  10. _ dst: String
  11. ) {
  12. // Вход.
  13. Bus.receiveSync(
  14. [src],
  15. { [weak self] _, v in self?.v.send(v) },
  16. &subscriptions
  17. )
  18. // Выход.
  19. Bus.sendSync(
  20. dst,
  21. v
  22. .debounce(for: .seconds(sec), scheduler: DispatchQueue.main)
  23. .compactMap { (v: Src) in handler(v) }
  24. .eraseToAnyPublisher(),
  25. &subscriptions
  26. )
  27. }
  28. }
  29. }