[FEATURE] design proto extensions for pub/sub #35
vtolstov
commented 2023-07-31 01:06:49 +03:00
Owner
```
syntax = "proto3";
package helloworld;
service GreeterService {
option (pubsub) = {
publisher {
topic: "my_topic";
message: ".helloworld.HelloReq";
};
subscriber {
topic: "my_topic";
group: "consumer_group";
message: ".helloworld.HelloRsp";
}
};
}
message HelloReq {
string name = 1;
}
message HelloRsp {
string message = 1;
}
```
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?