cblauvelt

Results 8 comments of cblauvelt

I think that would work fine. I was thinking of defining these in my own program as well but if it's in the library it wouldn't be necessary. I would...

I took out all the set and get requests and only left the `client.sync_commit();` The output now gets to disconnecting the connection but it fails during the disconnect. This may...

Thank you for the quick reply. I created a docker image that should allow you to see the error. I am actually using C++17. I compiled the cpp_redis source using...

Yes. I cannot figure out what the problem is. On Mon, Mar 19, 2018 at 2:52 AM, lvpidadiao wrote: > hi, are you still getting on with this issue? >...

@krzysztof-jusiak Were you able to reproduce this? Is there any additional information I can provide?

That is what I have done and it has worked fine. Be careful not to handle an event in both the parent SM and the sub SM.

I was able to create actions that called member functions of a class. I created actions like: ``` struct Connect { auto operator()(detail::TcpClientPrivate* client) { client->connect(); } }; struct ConnectingStateMachine...

That's what I was looking for. That's the example I used to make my code. My issue was that I couldn't set a timer inside an action (try to connect...