Skip to content

Commit

Permalink
feat: add required timestamp in ValuesMap
Browse files Browse the repository at this point in the history
  • Loading branch information
Pippo98 committed Nov 28, 2024
1 parent 5e63092 commit d67e1cf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions proto/data/extra.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ syntax = "proto3";

package Data;

message RepeatedValue { repeated double values = 1; }
message RepeatedValueUint64 { repeated uint64 values = 1; }
message RepeatedValueDouble { repeated double values = 1; }

message ValuesMap { map<string, RepeatedValue> valuesMap = 1; }
message ValuesMap {
RepeatedValueUint64 timestamp = 1;
map<string, RepeatedValueDouble> valuesMap = 2;
}

message TimeValuesPack { map<string, ValuesMap> valuesPack = 1; }

0 comments on commit d67e1cf

Please sign in to comment.