You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added the ability for processes to easily respond to messages from other processes over IPC via callbacks. A new callback argument was added to sendToWorker, sendToBroker and sendToMaster methods throughout SC (see updated API docs on https://socketcluster.io website).
Added buffering to sendToWorker function on master - Previously, if the workerCluster wasn't ready yet or was down, invoking socketCluster.sendToWorker(...) would trigger an error - Now the messages will be buffered and delivered as soon as the workerCluster is ready.