Lines Matching full:record
20 using Record = std::tuple<size_t, int64_t, int64_t, int64_t>; typedef
25 * The exception that is thrown when a raw history record
31 InvalidRecordException() : std::runtime_error("Invalid history record") {} in InvalidRecordException()
41 * intervals. Every 30s, a new record will be available from the
90 * cleared, such as when there is an invalid record
93 * @param[in] rawRecord - the record data straight
154 * @brief returns the sequence ID from a raw history record
158 * @param[in] data - the raw record data as the PS returns it
165 * @brief Creates an instance of a Record from the raw PS data
167 * @param[in] data - the raw record data as the PS returns it
169 * @return Record - A filled in Record instance
171 Record createRecord(const std::vector<uint8_t>& data);
176 * When a new record is added, the oldest one will be removed.
191 std::deque<Record> records;