mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-24 08:25:31 +00:00
remove proto comment
This commit is contained in:
@@ -10,8 +10,8 @@ service Mq {
|
|||||||
rpc Subscribe(SubscribeRequest) returns (stream SubscribeResponse) {}
|
rpc Subscribe(SubscribeRequest) returns (stream SubscribeResponse) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Publish a message to the mq. Specify a topic to group messages for a specific topic.
|
// Publish a message. Specify a topic to group messages for a specific topic.
|
||||||
message PublishRequest {
|
message PublishReque st {
|
||||||
// The topic to publish to
|
// The topic to publish to
|
||||||
string topic = 1;
|
string topic = 1;
|
||||||
// The json message to publish
|
// The json message to publish
|
||||||
@@ -26,7 +26,6 @@ message SubscribeRequest {
|
|||||||
string topic = 1;
|
string topic = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// A blocking mq will be returned in response.
|
|
||||||
message SubscribeResponse {
|
message SubscribeResponse {
|
||||||
// The topic subscribed to
|
// The topic subscribed to
|
||||||
string topic = 1;
|
string topic = 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user