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

handleMachMessage:

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

Declaration 宣言

- (void)handleMachMessage:(void *)msg;

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

See Also 参照

Related Documentation 関連文書