aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/protos/actors.proto
blob: 5e40cbf6c2d18ef91263488e69e431a08bab4610 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package NActorsProto;
option java_package = "ru.yandex.kikimr.proto";
option java_outer_classname = "NActorsBaseProto";

message TActorId {
    required fixed64 RawX1 = 1;
    required fixed64 RawX2 = 2;
}
 
message TCallbackException { 
    required TActorId ActorId = 1;
    required string ExceptionMessage = 2; 
}