Byeong Gwan

Results 23 comments of Byeong Gwan

> Having that said, it is a bit weird to make a worker pool a singleton -- are you sure that's what you'd need? usually you'd reach for one or...

I guess this issue is not related to singleton. WorkerPool can't adapt any additional protocol. This two line of code is enough for compiler to fail. ``` protocol EmptyProtocol {}...

> You might be interested in https://mikehearn.github.io/nodejvm/ which has an API and other utilities for synchronizing and scheduling work back and forth between NodeJS and Java. I checked your code....

> > > You might be interested in https://mikehearn.github.io/nodejvm/ which has an API and other utilities for synchronizing and scheduling work back and forth between NodeJS and Java. > >...

I made node addon module which expose `napi::threadsafefunction` wrapped block as function pointer. And than call that function pointer from jvm background thread. Which is very unsafe operation(I have to...

calling like below collect and print message as expected. ```kotlin context.eval("js", """ const myModule = require('uv_file_convert'); for (let i = 0; i < 5; i++) { const coo = myModule.makeBlockWrapper(()...

Is this the same issue that I'm suffering too? I can not use import inside from`Context.eval`. without using the workaround like below. ```javascript // this is index.js const { createRequire...

This could happen if the design request more resource than target platform capacity( too much LUT, FlipFlop ... etc ). Also check estimation report's resource part to ensure everything is...

Writing code like below seems working with vite-hmr in the same port. But I'm not sure if this is the best implementation. ``` // plugin.js configureServer({ httpServer }) { const...

If you are using intellij it is quite easy to launch intllij provides `$ClassPath` when you attach `Build` on `Before Launch` tab. I also I think, I can attach debugger...