AnyPublisher itself doesn’t conform to Sendable, because Combines Publisher protocol isnt marked that way. However if both your Output
and Failure
types are Sendable
, you can add a conditional conformance to make AnyPublisher
usable across concurrency domains.