groupcache/groupcachepb/example.proto
Derrick J. Wippler 48a0ce2463 Get() now returns immediately when context is done
* `Get()` now returns immediately when context is done during a groupcache peer
  conversation. Previously `Get()` would call the `Getter` with a done context.
2019-06-10 14:16:39 -05:00

12 lines
182 B
Protocol Buffer

syntax = "proto3";
option go_package = "groupcache_test";
package groupcachepb;
message User {
string id = 1;
string name = 2;
int64 age = 3;
bool is_super = 4;
}