I recently stumbled upon Google's Protocol Buffers as a Kickstarter project I'm following, Lifx, plans to release an SDK utilizing Protocol Buffers as the interface. I was just wondering if anyone knows of any existing applications or services offering a Protocol Buffers API? I am just looking to get some experience playing around with it.
相关问题
- creating callbacks and structs for repeated field
- How to deal with unknown protobuf fields in Java?
- Is it possible to use Apache Thrift without RPC?
- How do I Import a .proto file from a dependency ja
- compile protocol buffers 3 timestamp type in c# vi
相关文章
- How to not freeze the UI, and wait for response?
- Protocol message tag had invalid wire type
- Protobuf InvalidProtocolBufferException with some
- use protobuf3 with some lib which depends on proto
- How to serialize/deserialize a protobuf message th
- Parsing a raw Protocol Buffer byte stream in C#
- How can i write my own RPC Implementation for Prot
- Read value of enum extension in protocol buffer
Protocol buffers is first and foremost a mechanism to serialize your program data into binary format (for storage or transfer over the network ) and back again - in a programming language independent way. ie. you can serialize a complex data structure to binary in python app and read it back into an android app and get the same data in the android app's programming language. Protocol buffers doesn't help you transfer or send the data from one place to another - for this you need some other mechanism ( TCP/IP , sockets, HTTP ). Protocol buffers does however provide an API for performing RPC calls from a client to a remote server - but doesn't provide any implementation. There are some 3rd party implementations of this particular RPC api which can be used with any java application - see https://code.google.com/p/protobuf-rpc-pro/ - which might work on android.