Instance Method インスタンスメソッド

addOperation(_:)

Wraps the specified block in an operation and adds it to the receiver. あるオペレーションの中の指定されたブロックをラップして、それをレシーバに加えます。

Declaration 宣言

func addOperation(_ block: @escaping () -> Void)

Parameters パラメータ

block

The block to execute from the operation. The block takes no parameters and has no return value. オペレーションから遂行することになるブロック。ブロックはパラメータを取りません、そして戻り値を持ちません。

Discussion 議論

This method adds a single block to the receiver by first wrapping it in an operation object. You should not attempt to get a reference to the newly created operation object or determine its type information. このメソッドは、ある単一のブロックをレシーバへと加えます、それをまずオペレーションオブジェクトの中にラップすることによって。あなたは、新しく作成されたオペレーションオブジェクトへの参照を得るまたはそれの型情報を決定することを試みるべきではありません。

See Also 参照

Managing Operations in the Queue キューの中のオペレーションそれらを管理する

Related Documentation 関連文書