diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-05-05 02:05:28 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-05-05 02:05:28 -0700 |
| commit | 1e3e4b3072071341b4bb4b0bb7c611457e927f97 (patch) | |
| tree | d32efe43fdc34d203393d45d8343d54eaa19f180 /other/java | |
| parent | 47234760f40e4d2cea87b4a83d2178b8181598f5 (diff) | |
| download | seaweedfs-1e3e4b3072071341b4bb4b0bb7c611457e927f97.tar.xz seaweedfs-1e3e4b3072071341b4bb4b0bb7c611457e927f97.zip | |
add broker connects to filer
Diffstat (limited to 'other/java')
| -rw-r--r-- | other/java/client/src/main/proto/filer.proto | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto index 6d890861d..3b3b78bbb 100644 --- a/other/java/client/src/main/proto/filer.proto +++ b/other/java/client/src/main/proto/filer.proto @@ -48,6 +48,8 @@ service SeaweedFiler { rpc SubscribeMetadata (SubscribeMetadataRequest) returns (stream SubscribeMetadataResponse) { } + rpc KeepConnected (stream KeepConnectedRequest) returns (stream KeepConnectedResponse) { + } } ////////////////////////////////////////////////// @@ -261,3 +263,10 @@ message LogEntry { int32 partition_key_hash = 2; bytes data = 3; } + +message KeepConnectedRequest { + string name = 1; + uint32 grpc_port = 2; +} +message KeepConnectedResponse { +} |
