allegro / php-protobuf

PHP Protobuf - Google's Protocol Buffers for PHP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

read Protocol Buffers delimited

sabdelmoumene opened this issue · comments

Hello,
Any functions for read Protocol Buffers delimited like Google\Protobuf method (parseFromStream)
I need to read Protocol Buffers delimited but in proto2 syntax,

thank you for your help

No, unfortunately this project does not support the streams. You have only single function to parse at your disposal, namely parseFromString. Of course, this function requires you to download all the contents upfront (which is not what you are after).

Ok thank you for your answer