Travis Gockel

Results 31 comments of Travis Gockel

Does it make sense to have `curator` as a sibling project to a more lightweight `zookeeper`?

I have a branch for this here: https://github.com/tgockel/rust-zookeeper/tree/issue/45/transactions . The code doesn't work because I can't get the deserialization of responses working correctly and I have no idea what I'm...

The `then` function comes from the proposed [`std::experimental::future::then`](https://en.cppreference.com/w/cpp/experimental/future/then), which is still not in C++17. I was hoping the C++ Standard would catch up to my documentation. In the future, there...

I use `final` to mark that either (1) the class shouldn't be derived from because it would break something or (2) I haven't thought about what deriving means yet. I...

Bit of guesswork here: Boost's "as close as possible" might be pretty bad in this situation because the exception classes are marked `final`.

The suggestion on that to be to see if removing `final` from the exception types makes `boost::current_exception` just work (sorry if that was unclear).

That's a good, simple test case with a rather surprising output...I suspect my understanding of `boost::current_exception` is off. Even simpler version has the same output: ``` #include #include #include struct...

Pushing this to v0.2 so we can think about configuration as a whole.

I opened [ZOOKEEPER-2969](https://issues.apache.org/jira/browse/ZOOKEEPER-2969) in an attempt to get the C API changed to something a bit more usable, but no response. There's some argument to copying the C code and...

Pushing to 0.3 because ZK C API...