aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/examples/02_discovery/protocol.proto
blob: 41cc2cc9c82a4748b70dbfdad1df3b78922baed8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package NActorsExample;

message TEvReplicaInfo {
	optional string Key = 1;
	repeated string Payload = 2;
};

message TEvReplicaPublishAck {
	optional string Key = 1;
};

message TEvReplicaPublish {
	optional string Key = 1;
	optional string Payload = 2;
};

message TEvReplicaLookup {
	optional string Key = 1;
};