Overview
概要
NSMachPort
is a subclass of NSPort
that wraps a Mach port, the fundamental communication port in macOS. NSMachPort
allows for local (on the same machine) communication only. A companion class, NSSocketPort
, allows for both local and remote distributed object communication, but may be more expensive than NSMachPort
for the local case.
NSMachPort
はNSPort
のサブクラスです、それはMachポート、macOSでの基本的な通信ポートをラップしますNSMachPort
は、ローカルな(同じマシン上での)通信のみを想定します。対をなすクラス、NSSocketPort
は、ローカルおよびリモート分散オブジェクト通信の両方を想定します、しかしローカルの場合にはNSMachPort
より高くつくでしょう。
To use NSMachPort
effectively, you should be familiar with Mach ports, port access rights, and Mach messages. See the Mach OS documentation for more information.
NSMachPort
を効率的に使うには、あなたはMachポート、ポートアクセス権、そしてMachメッセージに精通しているべきです。さらなる情報のためにMach OS文書を見てください。