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

addConnection:toRunLoop:forMode:

Adds the receiver to the list of ports monitored by a given run loop for the given input mode. レシーバを、この与えられた入力モードに対して、ある与えられた実行ループによって監視されるポートのリストに加えます。

Declaration 宣言

- (void)addConnection:(NSConnection *)conn 
            toRunLoop:(NSRunLoop *)runLoop 
              forMode:(NSRunLoopMode)mode;

Parameters パラメータ

connection

The connection object that invoked this method. このメソッドを発動した接続オブジェクト。

runLoop

The run loop to which to add the receiver. それに対してレシーバを加える実行ループ。

mode

The run loop mode in which to add the receiver. それにおいてレシーバを加える実行ループモード。

Discussion 議論

You should not call this method directly. The method is provided for subclassers who wish to provide their own custom types of NSPort. The NSConnection object, connection, calls this method at the appropriate times. あなたは、このメソッドを直接に呼び出すべきではありません。このメソッドは、NSPortのそれら独自のあつらえの型を提供したいサブクラス作成者に対して提供されます。NSConnectionオブジェクト、connection、は、このメソッドを適切な時に呼び出します。

See Also 参照

Creating Connections 接続を作成する

Related Documentation 関連文書