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. パブリッシャープロトコルを、もし結果が成功するならば加入者を受け入れる、またはもしそれが失敗するならばエラーで直ぐに終了することによって実装します。

Declaration 宣言

func receive<S>(subscriber: S) where Success == S.Input, Failure == S.Failure, S : Subscriber

Parameters パラメータ

subscriber

The subscriber to attach to this Publisher, after which it can receive values. このPublisherに添付することになる加入者、それの後にそれは値を受け取ることができます。

Relationships 関係

From Protocol 由来プロトコル