edition = "2023"; | |
package milotic_hft; | |
import "sensor_identifier.proto"; | |
message HighFrequencySensorReading { | |
float float_reading = 1; | |
int64 timestamp_ns = 2; // Nanosecond timestamp of the readings. | |
} | |
message HighFrequencySensorsReadings { | |
repeated HighFrequencySensorReading timestamped_readings = 1; | |
SensorIdentifier sensor_identifier = 2; | |
} | |
message HighFrequencySensorsReadingsBatch { | |
repeated HighFrequencySensorsReadings readings = 1; | |
} |