DEVELOPMENT ENVIRONMENT

~liljamo/emerwen-proto

ref: 4a8ac69c8d909b6d512ac2ef13884165ebc724f5 emerwen-proto/proto/workercontrol.proto -rw-r--r-- 635 bytes
4a8ac69cJonni Liljamo feat!: iteration number whatever, revamp whooo! 9 hours ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
syntax = "proto3";
package emerwen.workercontrol;

import "shared/target.proto";

service WorkerControlService {
    rpc WorkerStream(stream WorkerMessage) returns (stream ServerCommand) {}
}

message WorkerMessage {
    string worker_id = 1;
    oneof msg {
        RegistrationMessage registration = 2;
        TargetStateMessage target_state = 3;
    }
}

message RegistrationMessage {}

message TargetStateMessage {
    string target_id = 1;
    shared.TargetState state = 2;
}

message ServerCommand {
    oneof cmd {
        TargetsCommand targets = 1;
    }
}

message TargetsCommand {
    repeated shared.Target targets = 1;
}