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

remoteObjectProxyWithErrorHandler(_:)

Returns a proxy object that invokes the error handling block if an error occurs on the connection. あるプロキシオブジェクトを返します、それはエラー処理ブロックをもしエラーが接続に関して発生するならば発動するものです。

Declaration 宣言

func remoteObjectProxyWithErrorHandler(_ handler: @escaping (Error) -> Void) -> Any

Parameters パラメータ

handler

The error handling block that the proxy object should call when an error occurs while waiting for a reply. エラー処理ブロック、それはある応答を待っている間にエラーが発生する場合にプロキシオブジェクトが呼び出すべきものです。

Discussion 議論

If the message sent to the proxy has a reply handler, then either the error handler or the reply handler is called exactly once. プロキシに送るメッセージが応答ハンドラを持つならば、そのときエラーハンドラまたは応答ハンドラのどちらかが、きっかり一度だけ呼び出されます。

The resulting proxy object conforms to the NSXPCProxyCreating protocol. 結果のプロキシオブジェクトは、NSXPCProxyCreatingプロトコルに準拠します。