The subscriber to attach to this Publisher, after which it can receive values. このPublisherに添付することになる加入者、それの後にそれは値を受け取ることができます。
Generic Instance Method
総称体インスタンスメソッド
receive(subscriber:)
Implements the publisher protocol by accepting the subscriber if the result is success, or terminating with an error immediately if it’s failure.
パブリッシャープロトコルを、もし結果が成功するならば加入者を受け入れる、またはもしそれが失敗するならばエラーで直ぐに終了することによって実装します。
Availability
- iOS 13.0+
- iPadOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+
- Xcode 11.0+
Technology
- Combine
Declaration 宣言
func receive<S>(subscriber: S) where Success == S.Input
, Failure == S.Failure
, S : Subscriber
Parameters パラメータ
subscriber