Arnaud Esteve

Results 49 comments of Arnaud Esteve

Have you considered using: https://github.com/reactiverse/aws-sdk ? It makes the official AWS SDK compatible with Vert.x (including KinesisClient). Let us know if you have any issue.

@pmlopes I thought the goal was to create routes from a swagger / raml description, not the other way around. But anyway, I'm rooting for a full refactor of vertx-web...

Hello @slinkydeveloper Very nice to see what you're going on with. Also nice to see our projects could converge at some point without pursuing the exact same need. Let's clarify...

People interested in this (a functional way to describe routes and endpoints) may be interested in [Tapir](https://github.com/softwaremill/tapir) which now supports Vert.x as a server backend.

You may be facing the same problem as: https://github.com/vert-x3/vertx-kafka-client/issues/220 You have a "poison pill" in your topic, and in that case (be it with the standard Kafka client or the...

Sorry for the confusion, let me try to explain this a bit better. ```xml a 123 MaybeNotAnInt AnotherString ``` I could map to the following enum: ```rust enum Elements {...

Thanks for the detailed answer. Unfortunately I have never written a single macro, so it's probably gonna take a while for me to find the syntax to add an optional...

Note that in #485 I added quickcheck as a dependency for testing properties in probablistic data structures. For sort algorithms, Property-Based-Testing could greatly reduce the amount of tests to write,...

In my opinion, it's either relying "on the magic tool of a powerful tool" that includes shrinking and seeding for both understanding & reproducibility or nothing. I don't really see...