Structures
The following structures are available globally.
-
Undocumented
See moreDeclaration
Swift
public struct Effect<Dependencies, OutputAction>
-
Fire And Forget is a publisher for when you don’t care about the output of certain async operation. It’s important to notice that this operation can’t fail. If you want to also ignore the failure, then you can catchErrors and return nil in the proper init. It may complete successfully when task is done.
See moreDeclaration
Swift
@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) public struct FireAndForget<IgnoringOutput> : Publisher