TODO: 了解探针的接收数据过程

This commit is contained in:
eson
2022-06-07 14:03:03 +08:00
parent 3dadd8c4e8
commit 6e7a35b76d
24 changed files with 2747 additions and 53 deletions

View File

@@ -1,26 +0,0 @@
syntax = "proto3";
package com.yuandian.dataflow.rpc;
// option java_package = "com.yuandian.dataflow.rpc";
// option java_outer_classname = "com.yuandian.dataflow.rpc";
option java_multiple_files = false;//以非外部类模式生成
service DataFlow {
rpc Update (State) returns (Response);
}
message State {
map<int32, QueueState> QueueMap = 1;
}
message QueueState {
int32 Size = 1;
}
message Response {
int32 Code = 1;
string Message = 2;
bytes Data = 3;
}