@@ -31,10 +31,10 @@ namespace cpp_redis {
3131
3232 using defer = std::shared_ptr<void >;
3333
34- // !
35- // ! reply callback called whenever a reply is received
36- // ! takes as parameter the received reply
37- // !
34+ /* *
35+ * reply callback called whenever a reply is received
36+ * takes as parameter the received reply
37+ */
3838 typedef dispatch_callback_t consumer_callback_t ;
3939
4040 typedef struct consumer_callback_container {
@@ -72,13 +72,15 @@ namespace cpp_redis {
7272 const consumer_callback_t &consumer_callback,
7373 const acknowledgement_callback_t &acknowledgement_callback = nullptr );
7474
75- // ! @brief Connect to redis server
76- // ! @param host host to be connected to
77- // ! @param port port to be connected to
78- // ! @param connect_callback connect handler to be called on connect events (may be null)
79- // ! @param timeout_ms maximum time to connect
80- // ! @param max_reconnects maximum attempts of reconnection if connection dropped
81- // ! @param reconnect_interval_ms time between two attempts of reconnection
75+ /* *
76+ * @brief Connect to redis server
77+ * @param host host to be connected to
78+ * @param port port to be connected to
79+ * @param connect_callback connect handler to be called on connect events (may be null)
80+ * @param timeout_ms maximum time to connect
81+ * @param max_reconnects maximum attempts of reconnection if connection dropped
82+ * @param reconnect_interval_ms time between two attempts of reconnection
83+ */
8284 void connect (
8385 const std::string &host = " 127.0.0.1" ,
8486 std::size_t port = 6379 ,
@@ -87,12 +89,12 @@ namespace cpp_redis {
8789 std::int32_t max_reconnects = 0 ,
8890 std::uint32_t reconnect_interval_ms = 0 );
8991
90- // !
91- // ! commit pipelined transaction
92- // ! that is, send to the network all commands pipelined by calling send() / subscribe() / ...
93- // !
94- // ! @return current instance
95- // !
92+ /*
93+ * commit pipelined transaction
94+ * that is, send to the network all commands pipelined by calling send() / subscribe() / ...
95+ *
96+ * @return current instance
97+ */
9698 consumer &commit ();
9799
98100 void dispatch_changed_handler (size_t size);
0 commit comments