@brief Set maximum bytes to a different amount @param number_of_bytes The maximum bytes to allow in the cache. Once exceeded, the cache will purge the oldest frames.
| 103 | /// @brief Set maximum bytes to a different amount |
| 104 | /// @param number_of_bytes The maximum bytes to allow in the cache. Once exceeded, the cache will purge the oldest frames. |
| 105 | void SetMaxBytes(int64_t number_of_bytes) { max_bytes = number_of_bytes; }; |
| 106 | |
| 107 | /// @brief Set maximum bytes to a different amount based on a ReaderInfo struct |
| 108 | /// @param number_of_frames The maximum number of frames to hold in cache |
no outgoing calls
no test coverage detected