Returns whether `this` is LATER in time than `other`. If frame is same, compares `seq`. */
| 295 | If frame is same, compares `seq`. |
| 296 | */ |
| 297 | bool operator<(const SeqMessage& other) const { |
| 298 | return std::make_tuple(message.getFrame(), seq) > std::make_tuple(other.message.getFrame(), other.seq); |
| 299 | } |
| 300 | }; |
| 301 | |
| 302 | static const size_t InputQueue_maxSize = 8192; |