Type Method 型メソッド

serviceConnectionWithName:rootObject:

Creates and returns a new connection object representing a vended service on the default system port name server. 省略時のシステムポート名サーバ上のある販売サービスを表している新しい接続オブジェクトを作成して返します。

Declaration 宣言

+ (instancetype)serviceConnectionWithName:(NSString *)name 
                               rootObject:(id)root;

Parameters パラメータ

name

The name of the service you want to publish. あなたが出版したいサービスの名前。

root

The object to use as the root object for the published service. This is the object vended by the connection. 出版されるサービスに対するルートオブジェクトとして使うオブジェクト。これは、接続によって販売されるオブジェクトです。

Return Value 戻り値

An NSConnection object representing the vended service or nil if there was a problem setting up the connection object. あるNSConnectionオブジェクト、それは販売されるサービスを表しています、またはnil、もし接続オブジェクトを準備するのに問題があったならば。

Discussion 議論

This method creates the server-side of a connection object and registers it with the default system port name server. Clients wishing to connect to this service can request a communications port from the same port server and use that port to to communicate. このメソッドは、接続オブジェクトのサーバサイドを作成します、そしてそれをこの省略時のシステムポートネームサーバに登録します。このサービスに接続を望むクライアントは、同じポートサーバからのある通信ポートを要請できます、そしてそのポートを通信に使用できます。

See Also 参照

Vending a Service サービスの販売

Related Documentation 関連文書