Harry Chan

Results 41 comments of Harry Chan

Are cleaners needed in this scenario? The finalize method calls `close()`. What's the use case? Can we just leave finalize out? Was there an actual bug? The user should close...

Gzip stream use Cleaners as mentioned earlier in this post. Finalizers are deprecated. Maybe it'd just be similar to add a shutdown hook to close the resources on closure or...

The deprecation of finalizers and cleaners happened after JDK8.

If you look at the Java 9 source code for cleaner it's a Weak/Soft/Phantom list of objects + a background thread or similar that executes the action. You can create...

There's a basic comparison here: https://github.com/benawad/node-graphql-benchmarks

Hi, [Vertx](https://vertx.io/) popular high performance framework. In this specific instance they have reactive database clients. Would be similar to the discussion from #2502. Main difference is Vertx as linked above...

Have a similar error. Tried updating to latest including v5.1.1 and still get the same result. Below is the diagnostics... Diagnostics: pulumi:pulumi:Stack (test): error: Running program '/builds/test/packages/inf/src' failed with an...

Are there any workarounds or known working versions? Have since tried to revert back to previous packages but it no longer works and is always stuck with the same error.

Any chance of getting this patched in?

MethodHandle is more efficient. It's the engine behind lambda and other invokedynamic uses. Hotspot / Java optimized MethodHandle rigorously from Java 8 onwards 9as per SO post). Anything MethodHandle /...