12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef BOOST_REDIS_USAGE_HPP
- #define BOOST_REDIS_USAGE_HPP
- namespace boost::redis
- {
- struct usage {
-
- std::size_t commands_sent = 0;
-
- std::size_t bytes_sent = 0;
-
- std::size_t responses_received = 0;
-
- std::size_t pushes_received = 0;
-
- std::size_t response_bytes_received = 0;
-
- std::size_t push_bytes_received = 0;
- };
- }
- #endif
|