1.

Explain what a Reactor Pattern in Node.js?

Answer»

REACTOR pattern again a pattern for nonblocking I/O OPERATIONS. But in GENERAL, this is used in any event-driven architecture. 

There are two components in this: 1. Reactor 2. Handler.

Reactor: Its JOB is to dispatch the I/O event to APPROPRIATE handlers
Handler: Its job is to actually work on those events



Discussion

No Comment Found