micro/client/service/proto/client.proto

31 lines
620 B
Protocol Buffer
Raw Normal View History

2019-06-18 20:51:52 +03:00
syntax = "proto3";
package go.micro.client;
2019-08-23 14:06:11 +03:00
// Client is the micro client interface
service Client {
2019-06-18 20:51:52 +03:00
// Call allows a single request to be made
rpc Call(Request) returns (Response) {};
// Stream is a bidirectional stream
rpc Stream(stream Request) returns (stream Response) {};
// Publish publishes a message and returns an empty Message
rpc Publish(Message) returns (Message) {};
}
message Request {
string service = 1;
string endpoint = 2;
string content_type = 3;
bytes body = 4;
}
message Response {
bytes body = 1;
}
message Message {
string topic = 1;
string content_type = 2;
bytes body = 3;
}