Upgrade to Pro — share decks privately, control downloads, hide ads and more …

gRPCを完璧に理解する

yuki21
August 28, 2020

 gRPCを完璧に理解する

5分間社内LT資料

yuki21

August 28, 2020
Tweet

More Decks by yuki21

Other Decks in Technology

Transcript

  1. 定義 message Person { required string name = 1; required

    int32 id = 2; optional string email = 3; } シリアライズ Person john = Person.newBuilder() .setId(1234) .setName("John Doe") .setEmail("[email protected]") .build(); output = new FileOutputStream(args[0]); john.writeTo(output);