YOONBYEONGIN
YOONBYEONGIN
OK, I will check JS code !
Me too, Voice.stop() doesn't call onSpeechEnd !!
console.log(a); let a = 100; 이렇게 하면 참조 에러가 나는데, lexical parsing단계에서 a를 선언하고 값을 할당했으면, 실제 코드를 실행하는 단계에서는 에러가 안나야 하는거 아닌가요? ( 실행 컨텍스트의 Variable Object에 a가...
me too, onSpeechEnd is called automatically after voice recognition in Android.
Sorry, I'm studying NodeJS and I found that I should understand Libuv to understand NodeJS. So I started from I/O Device ~ Non-Blocking ~ Event Loop etc. Many people say...
Thank you so much ! I'm reading source code of libuv with my very weak knowledge of C++ and thread, OS. I have some question about communication between worker thread...
davisjam, thanks to you, the mystery seems to be slowly solved. Now I may understand what "wake up event loop" means. I found some information about this in a [libuv...
Thanks you davisjam. See `node/lib/fs.js` and `node/lib/internal/fs/read_file_context.js`. There are a series of stages (stat, open, read-read-...-read, close), some handled in the `ReadFileContext` class, and concluding with `ReadFileContext::readFileAfterClose` which invokes `callback(null,...
davisjam, thanks for your answer. I checked that open -> stat -> read -> close process in source code but, I didn't see any code to insert callback function into...