加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
snowflake.proto 410 Bytes
一键复制 编辑 原始数据 按行查看 历史
xtaci 提交于 2015-05-22 03:19 . init
syntax = "proto3";
package proto;
// snowflake service definition
service SnowflakeService {
rpc Next(Snowflake.Key) returns (Snowflake.Value); // 产生下一个序号
rpc GetUUID(Snowflake.NullRequest) returns (Snowflake.UUID); // UUID 发生器
}
message Snowflake{
message Key {
string name=1;
}
message Value {
int64 value=1;
}
message NullRequest{
}
message UUID {
uint64 uuid =1;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化