Any data transfer mechanism can be used with protocol buffers. I have used JMS, TCP, UDP, 'flat files', etc... it's just a matter of grabbing the bytes (m.build().toByteArray() in java) and throwing them on the appropriate stream. You can also output the protocol buffer directly onto the output stream (m.build().writeTo(OutputStream) or m.build().writeDelimitedTo(OutputStream))
On Sep 30, 5:14 am, Fred chen <[email protected]> wrote: > I want to know the communicate protocl under "Protocol Buffers". My > application calls for High performance, and the HTTP protocol may > cause problem. I know the RpcChannel is based on HTTP, and I want to > know if the HTTP is the basic of "Protocol Buffers". > Thanks -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/protobuf?hl=en.
