Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我正在开发的 XPC 服务中,我想调用xpc_connection_send_message_with_reply_sync或xpc_connection_send_message_with_reply从服务的事件处理程序中调用(它从客户端请求一些额外的数据)。
xpc_connection_send_message_with_reply_sync
xpc_connection_send_message_with_reply
它没有将消息发送回客户端,而是挂起。似乎只有在我的事件处理程序完成后才等待发送消息。
有没有办法与客户端进行通信而无需先从事件处理程序重新调整?
显然,它仅在将消息发送到我的代码正在其中运行的事件处理程序的同一连接时挂起。当将消息发送到不同的连接时,它工作正常。