Re: [protobuf] Scoping in definitions

2016-02-25 Thread 'Feng Xiao' via Protocol Buffers
On Thu, Feb 25, 2016 at 5:57 AM, Tim Richardson wrote: > Hi, just wanted to check my declaration with you guys, is it possible to > reuse the `Study` declaration in the `Denormalised` > You can define a field with type 'Study' without declaring it again in 'Denomalised'. Likewise, you don't need

[protobuf] Re: //:protobuf_java target not working

2016-02-25 Thread Steven Parkes
https://github.com/google/protobuf/pull/1278 On Mon, Feb 22, 2016 at 5:07 PM, Rohit Saboo wrote: > Hi bazel-discuss and protobuf, > > I am bringing in protobuf as an external bazel repository: > > git_repository( > name = "protobuf_repo", > commit = "32daf513ced8d51e8de6cc8d800cfc972c4df

[protobuf] Sample for CodedInputStream in C#

2016-02-25 Thread Stephen LABBE
Hi, I try to code a sample about protocol buffer over tcp. I launch a TCPListener and a TCPClient. I send with the TCP client and CodedOutputStream a message with some parameters. But when I try to decode the message with CodedInputStream, I just have the first parameter of my message. And the

[protobuf] Scoping in definitions

2016-02-25 Thread Tim Richardson
Hi, just wanted to check my declaration with you guys, is it possible to reuse the `Study` declaration in the `Denormalised` package mypackage; message Dataset { required string accession = 1; required string url_self = 2; optional string title = 3; optional string description = 4; r