A pointer to a Mach message, cast as a pointer to void. Machメッセージへのポインタ、voidへのポインタとしてキャストされます。
Instance Method
インスタンスメソッド
handle
handleMachMessage(_:)
Process an incoming Mach message.
やってくるMachメッセージを処理します。
Availability 有効性
- iOS 2.0+
- iPadOS 2.0+
- macOS 10.0+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
optional func handleMachMessage(_ msg: UnsafeMutableRawPointer
)
Parameters パラメータ
machMessage
Discussion 議論
The delegate should interpret this data as a pointer to a Mach message beginning with a msg_header_t structure and should handle the message appropriately. 委任先は、このデータをmsg_header_t構造体で始まるMachメッセージへのポインタとして解釈すべきです、そしてメッセージを適切に取り扱うべきです。
The delegate should implement either handle
or the Port
protocol method handlePortMessage:.
委任先は、handle
またはPort
プロトコルメソッドhandlePortMessage:のどちらかを実装すべきです。