jjuzna

Results 4 comments of jjuzna

I am having the same issue, this is my example (but having issue with much bigger codebase, this is just my minimal example). ``` const java = require('java'); const out...

A single line example ``` var java = require('java'); ``` And the issue can be recreated when following Docker section of readme.md

I did some more research. The root problem is adding `uv_async_init` line in commit https://github.com/joeferner/node-java/commit/bc557ad101909990e2d4c This call creates and runs handler that never quits so the node process continues to...

I've created a fork (and merge request) that adds stop() function to java object. That function closes handle used in loop spawned by `uv_async_init` and after that Node process can...