mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-12-03 18:19:04 +08:00
26 lines
520 B
Protocol Buffer
26 lines
520 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package messaging_pb;
|
|
|
|
option go_package = "github.com/chrislusf/seaweedfs/weed/pb/mq_pb";
|
|
option java_package = "seaweedfs.mq";
|
|
option java_outer_classname = "MessagQueueProto";
|
|
|
|
//////////////////////////////////////////////////
|
|
|
|
service SeaweedMessaging {
|
|
|
|
rpc FindBrokerLeader (FindBrokerLeader) returns (FindBrokerLeaderResponse) {
|
|
}
|
|
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
|
|
message FindBrokerLeaderRequest {
|
|
}
|
|
|
|
message FindBrokerLeaderResponse {
|
|
string broker = 1;
|
|
}
|