mirror of https://github.com/usbharu/Hideout.git
17 lines
346 B
Protocol Buffer
17 lines
346 B
Protocol Buffer
syntax = "proto3";
|
|
import "uuid.proto";
|
|
import "task_result.proto";
|
|
|
|
option java_package = "dev.usbharu.owl.generated";
|
|
|
|
message TaskResults {
|
|
string name = 1;
|
|
UUID id = 2;
|
|
bool success = 3;
|
|
int32 attempt = 4;
|
|
repeated TaskResult results = 5;
|
|
}
|
|
|
|
service TaskResultSubscribeService {
|
|
rpc subscribe(UUID) returns (stream TaskResults);
|
|
} |