blob: d6ae34ab2908ce917274e8f86b8cd7c0d658be68 [file] [log] [blame]
syntax = "proto2";
package android.automotive.computepipe.proto;
message StartGraph {
// No member fields yet, as StartGraph() does not take any arguments.
}
message StopGraph {
// No member fields yet, as StopGraph() does not take any arguments.
}
message ApplyConfigs {
// No member fields yet, as ApplyConfigs() does not take any arguments.
}
message ResetConfigs {
// No member fields yet, as ResetConfigs() does not take any arguments.
}
message DeathNotification {
// No member fields yet.
}
message ControlCommand {
optional StartGraph start_graph = 1;
optional StopGraph stop_graph = 2;
optional ApplyConfigs apply_configs = 3;
optional DeathNotification death_notification = 4;
optional ResetConfigs reset_configs = 5;
}