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

handleMachMessage(_:)

Process an incoming Mach message. やってくるMachメッセージを処理します。

Declaration 宣言

optional func handleMachMessage(_ msg: UnsafeMutableRawPointer)

Parameters パラメータ

machMessage

A pointer to a Mach message, cast as a pointer to void. Machメッセージへのポインタ、voidへのポインタとしてキャストされます。

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 handleMachMessage: or the PortDelegate protocol method handlePortMessage:. 委任先は、handleMachMessage:またはPortDelegateプロトコルメソッドhandlePortMessage:のどちらかを実装すべきです。

See Also 参照

Related Documentation 関連文書