Проверка шаблона шины для iOS
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

il y a 1 an
il y a 1 an
il y a 1 an
il y a 1 an
123456789101112131415161718192021222324252627282930
  1. import Combine
  2. public extension Bus {
  3. final class Receiver<T> {
  4. var subscriptions = [AnyCancellable]()
  5. public init(
  6. _ keys: Set<String>,
  7. _ handler: @escaping ((String, T) -> Void),
  8. opt: [Option] = []
  9. ) {
  10. Bus.receive(keys, handler, opt: opt, sub: &subscriptions)
  11. }
  12. }
  13. }
  14. import Combine
  15. public extension Bus {
  16. final class Sender<T> {
  17. var subscriptions = [AnyCancellable]()
  18. public init(
  19. _ key: String,
  20. _ node: AnyPublisher<T, Never>,
  21. opt: [Option] = []
  22. ) {
  23. Bus.send(key, node, opt: opt, sub: &subscriptions)
  24. }
  25. }
  26. }