Arnaud Esteve

Results 47 comments of Arnaud Esteve

You should only work with a worker verticle if you're dealing with "blocking calls" (i.e. non NIO calls). Actually, this is really well covered in the [docs](https://vertx.io/docs/vertx-core/java/). Please read the...

No it's not a "global". Whenever verticles are deployed, the `init` method is called, and sets `vertx` attribute. https://github.com/eclipse-vertx/vert.x/blob/master/src/main/java/io/vertx/core/AbstractVerticle.java#L66 This allows you to instantiate stuff as you need to, especially...

I'd have moved the `this.pool = ` within `init`, so that you can leave the constructor without `Vertx` parameter.

Ok so let me create a check list or there's a chance I'll be missing a lot of stuff since there's a lot of work to do: * [x] Reformat...

Just waiting for a second review @tsegismont before next phase (javadocs + official docs). Plus, converting to draft until Doc is there, so that it doesn't get merged by accident;

Note: about EventSource, would ` RecordParser` make the implementation easier? Something I need to investigate.

Thanks for your answer! One standard use-case of `docker-compose` in "tests within rust" would be Kafka I guess. In fact, when opening the issue I was reading : https://github.com/spicavigo/kafka-rust/blob/master/tests/run-all-tests Because...

I can give this a try although I'm a complete beginner. Could you point me at what you mean by "as we did for docker" ? Please ? It's not...

Perfect pointer! Thank you. I think `up`, `down` would be sufficient. If it's just calling the `docker-compose` command under the hood, it may be easy and I can give it...

So the pipeline interface could look like this : ``` java public interface Pipeline { public String rawPattern(); public String distDir(); public String transformName(String originalName); public Buffer transform(Buffer originalContent); }...