これで、クラスター lib を使用する私のプログラムは次のようになります。
if(cluster.isMaster) {
// here goes Rx subscriptions and workflows for the Master
} else if (cluster.isWorker){
// here goes Rx subscriptions and workflows for a Worker
}
少し見栄えが悪いので、マスターとワーカーの両方に共通のコードを複製する必要があります。より「リアクティブ」なスタイルに書き直す方法はありますか?