RemoteCommonService.proto 357 字节
Newer Older
P
pengys5 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
syntax = "proto3";

option java_multiple_files = true;
option java_package = "org.skywalking.apm.collector.remote.grpc.proto";

service RemoteCommonService {
    rpc call (Message) returns (Empty) {
    }
}

message Message {
    string workerRole = 1;
    int32 objectId = 2;
    bytes objectBytes = 3; // the byte array of data object
}

message Empty {
}