Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Message from discussion Protocl under "Protocol Buffers"

Received: by 10.52.68.4 with SMTP id r4mr8625462vdt.31.1317408866007;
        Fri, 30 Sep 2011 11:54:26 -0700 (PDT)
X-BeenThere: protobuf@googlegroups.com
Received: by 10.220.180.75 with SMTP id bt11ls5351449vcb.3.gmail; Fri, 30 Sep
 2011 11:54:21 -0700 (PDT)
MIME-Version: 1.0
Received: by 10.220.149.4 with SMTP id r4mr2841238vcv.50.1317408861012; Fri,
 30 Sep 2011 11:54:21 -0700 (PDT)
Received: by u13g2000vbx.googlegroups.com with HTTP; Fri, 30 Sep 2011 11:54:20
 -0700 (PDT)
Date: Fri, 30 Sep 2011 11:54:20 -0700 (PDT)
In-Reply-To: <e9124da2-84cd-46dc-b4ae-605893382bbf@d18g2000yql.googlegroups.com>
References: <e9124da2-84cd-46dc-b4ae-605893382bbf@d18g2000yql.googlegroups.com>
User-Agent: G2/1.0
X-HTTP-UserAgent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:7.0) Gecko/20100101 Firefox/7.0,gzip(gfe)
Message-ID: <cca0ddcc-c38b-4606-9e30-1b06d20b9b25@u13g2000vbx.googlegroups.com>
Subject: Re: Protocl under "Protocol Buffers"
From: Benjamin Wright <compuware...@gmail.com>
To: Protocol Buffers <protobuf@googlegroups.com>
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

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=A0am, Fred chen <chw.th...@gmail.com> 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".