Class
NSInvocationOperation
An operation that manages the execution of a single encapsulated task specified as an invocation.
ある発動として指定される単一のカプセル化されたタスクの実行を管理する演算。
Overview
概要
The NSInvocationOperation
class is a concrete subclass of NSOperation
that you use to initiate an operation that consists of invoking a selector on a specified object. This class implements a non-concurrent operation.
NSInvocationOperation
クラスは、NSOperation
の具象サブクラスです、それは、あるセレクタをある指定されたオブジェクト上で発動することから成るある演算に着手するために、あなたが使います。このクラスは非並行演算を実装します。
For more information on concurrent versus non-concurrent operations, see NSOperation
.
並行に対する非並行演算に関するさらなる情報として、NSOperation
を見てください。
Topics
話題
Initialization
初期化
- initWithTarget:selector:object:
Returns an NSInvocationOperation
object initialized with the specified target and selector.
指定されたターゲトとセレクタで初期化されたNSInvocationOperation
オブジェクトを返します。
- initWithInvocation:
Returns an NSInvocationOperation
object initialized with the specified invocation object.
指定された発動オブジェクトで初期化されたNSInvocationOperation
オブジェクトを返します。
Getting Attributes
属性を取得する
invocation
The receiver’s invocation object.
レシーバの持つ発動オブジェクト。
result
結果
The result of the invocation or method.
発動またはメソッドの結果。
Constants
定数
Result Exceptions
例外という結果になる
Names of exceptions raised by NSInvocationOperation
if there is an error when calling the result
method.
NSInvocationOperation
によって引き起こされる例外の名前、もしresult
メソッドを呼び出すときエラーがあるならば。
See Also
参照
Operations
さまざまな演算
NSOperation
An abstract class that represents the code and data associated with a single task.
ある単一のタスクと結びつけられたコードおよびデータを表す抽象クラス。
NSOperationQueue
A queue that regulates the execution of operations.
オペレーションいくつかの実行を統制するキュー。
NSBlockOperation
An operation that manages the concurrent execution of one or more blocks.
ひとつ以上のブロックの並列実行を管理するある演算。