Михаил Капелько 10 månader sedan
förälder
incheckning
34a63c92b3
1 ändrade filer med 16 tillägg och 0 borttagningar
  1. +16
    -0
      src/Bus.Processor.swift

+ 16
- 0
src/Bus.Processor.swift Visa fil

@@ -0,0 +1,16 @@
import Combine

public extension Bus {
final class Processor<Src, Dst> {
var subscriptions = [AnyCancellable]()

public init(
_ keyIn: String,
_ keyOut: String,
_ handler: @escaping ((Src) -> Dst?),
opt: [Option] = []
) {
Bus.process(keyIn, keyOut, handler, opt: opt, sub: &subscriptions)
}
}
}

Laddar…
Avbryt
Spara