0001-Added-field-persistent_id-to-rst.tracking.TrackingIn.patch

J. Moringen, 01/30/2017 02:47 PM

Download (1.26 KB)

View differences:

proto/stable/rst/tracking/TrackingInfo.proto
13 13
message TrackingInfo {
14 14

  
15 15
    /**
16
     * A unique id for each track.
16
     * A (locally) unique id for the track.
17
     *
18
     * Repeated values can occur due to component restarts or integer
19
     * overflows.
17 20
     */
18 21
    required uint32 id = 1;
19 22

  
23
    /**
24
     * A unique id for the track.
25
     *
26
     * Except in case of hash collisions, two different tracks should
27
     * not be assigned the same id, even across component restarts.
28
     *
29
     * For this encoding, the encoded UUID is 16 bytes long.
30
     */
31
    // @constraint(len(value) = 16)
32
    optional bytes persistent_id = 2;
33

  
20 34
}
21
-