I create a lot of BrowserWindows for my app, of which only 1 of them has a redux store. Looking at forwardToRenderer implementation, it seems like it's broadcasting the redux-action message to ALL webContents on the app. Is there any easy way to specify only a single webContents to receive the redux-action IPC message?
I create a lot of BrowserWindows for my app, of which only 1 of them has a redux store. Looking at
forwardToRenderer
implementation, it seems like it's broadcasting theredux-action
message to ALL webContents on the app. Is there any easy way to specify only a single webContents to receive theredux-action
IPC message?