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

connection:handleRequest:

This method should be implemented by NSConnection object delegates that want to intercept distant object requests. このメソッドは、遠隔オブジェクトリクエストをインターセプトする必要があるNSConnectionオブジェクト委任先によって実装されるべきです。

Declaration 宣言

- (BOOL)connection:(NSConnection *)connection 
     handleRequest:(NSDistantObjectRequest *)doreq;

Parameters パラメータ

conn

The connection object for which the receiver is the delegate. それに対してこのレシーバが委任先であるところの接続。

doReq

The distant object request. 遠隔オブジェクトリクエスト。

Return Value 戻り値

YES if the request was handled by the delegate, NO if the request should proceed as if the delegate did not intercept it. YES、もしリクエストが委任先によって取り扱われたならば、NO、もしまるで委任先がそれをインターセプト(奪取)しなかったかのようにリクエストが続行すべきならば。

See Also 参照

Responding to a Connection 接続に応答する