I have a numbers of computers working on the same problem and I need each computer to be able to broadcast the solution to the others.
Is this possible to get this functionality with Google Protocol Buffers?
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.
Protocol Buffers is a mechanism for serialising data and does not have any network transport component. You could use it to prepare messages for broadcast, but won’t help you to do the actual broadcast. For that, you might like to take a look at ZeroMQ or perhaps raw UDP.