Which is best way for inter process(from different users) communication in objective c?
Can we use Open MPI in cocoa application?
Which is best way for inter process(from different users) communication in objective c? Can
Share
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.
The “best” method for inter-process communication in Cocoa is the one most suitable for your needs.
If you just need to send simple notifications, check out
NSDistributedNotifcationCenter.If you need to send more data, check out
NSConnectionorNSPipe.OpenMPI also seems like a good choice, see this thread about using it with Xcode.
If you have any questions, feel free to comment.