Jim Jin
Jim Jin
I have a scenario which depends on subscription to multiple subjects. Let's say we have 3 rooms (room IDs are 1, 2, 3) which are installed temperature sensors. Three users...
@kozlovic I'm investigating various message queues for implementing our scenario. I have the real demo code using RabbitMQ, but does not have the demo code using NATS yet. I'm apt...
Hi @kozlovic , let me share my demo code using RabbitMQ here. The channel(variable ch) mode is "direct". ```javascript // publisher, publish 3 messages which keys(subjects) are 0, 1, and...
Hi @fmvin , could you show the demo code (the wrapper)? I'm really interested in it.
Thank you, @fmvin . Maybe I could try to creates multiple subscriptions(different keys) with the same callback.
>If a message is published and there is no subscriber for that message at that moment, the message is dropped. That is exactly what we want. We don't expect queueing...
Sorry, I didn't know the thread is specific to C client. I'll try adding subscriptions in node.js immediately.
Any plan(timeline) to support ESM? We have already used ESM everywhere.
I'd like to write unit test with the minimum cost. If the solution would be so tricky, I'd rather abandon the unit test with mock. After all, mock test is...
I don't quite understand the relevance of sinon and module system (I'm sorry). What I need is a js/node mock unit test framework (or library, like the java counterpart, mockito)...