docs: refine gRPC guide section numbers and add CloseAndRecv & fileStore explanations

This commit is contained in:
2026-07-17 22:15:58 +09:00
parent d90553ecdf
commit 50f63633ea
23 changed files with 2964 additions and 130 deletions
+21
View File
@@ -0,0 +1,21 @@
syntax = "proto3";
option go_package = "./protoapi/;protoapi";
import "common.proto";
service AlertService {
rpc SubscribeAlerts (AlertSubscription) returns (stream AlertMessage);
}
message AlertSubscription {
string ClientId = 1;
string Topic = 2;
}
message AlertMessage {
string AlertId = 1;
string DeviceId = 2;
string Message = 3;
int64 Timestamp = 4;
}