Type Method 型メソッド

proxyWithLocal:connection:

Returns a local proxy for a given object and connection, creating the proxy if necessary. 与えられたオブジェクトと接続に対するローカルプロキシを返します、必要ならばプロキシを作成します。

Declaration 宣言

+ (id)proxyWithLocal:(id)target 
          connection:(NSConnection *)connection;

Parameters パラメータ

anObject

An object in the receiver’s address space. レシーバのもつアドレス空間の中のあるオブジェクト。

aConnection

The connection for the returned proxy. 返されるプロキシに対する接続。

Return Value 戻り値

A local proxy for anObject and aConnection, creating it if necessary. anObjectに対するローカルプロキシとaConnection、必要ならばそれを作成します。

Discussion 議論

Other applications connect to the proxy using the NSConnection connectionWithRegisteredName:host: class method. 他のアプリケーションは、プロキシに、NSConnectionconnectionWithRegisteredName:host:クラスメソッドを使って接続します。

Local proxies should be considered private to their NSConnection objects. Only an NSConnection object should use this method to create them, and your code shouldn’t retain or otherwise use local proxies. ローカルプロキシそれらは、それらのNSConnectionにとってプライベードとみなされるべきです。あるNSConnectionオブジェクトだけが、このメソッドを使ってそれらを作成するべきです、そしてあなたのコードはローカルプロキシを保持すべきではありませんし、さもなければ使うべきではありません。

See Also 参照

Creating a Local Proxy ローカルプロキシを作成する

Related Documentation 関連文書