public void broadcastNetwork(Network network) { if (network != null && jsonWebSocketWriter != null) { jsonWebSocketWriter.write(network); } }
public void broadcastNameList(Namelist namelist) { if (namelist != null && jsonWebSocketWriter != null) { jsonWebSocketWriter.write(namelist); } }
public void broadcastCluster(Cluster c) { if (c != null && jsonWebSocketWriter != null) { jsonWebSocketWriter.write(c); } }
public void broadcastMatrix(DataMatrix dataMatrix) { if (dataMatrix != null && jsonWebSocketWriter != null) { jsonWebSocketWriter.write(dataMatrix); } }