I am looking for a high performance inter process communication system in macos X.
What is the best system? AppleEvents or NSNotifications?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Distributed notifications (i.e. notifications sent through NSDistributedNotificationCenter) are most likely not a good option if your goal is high performance and/or reliability. Here is Apple’s own take on this subject:
Depending on what you mean by “high performance”, you might want to look into distributed objects, or plain old Unix IPC mechanisms (sockets, pipes, shared memory etc).