Exemplo n.º 1
0
 public void broadcastNetwork(Network network) {
   if (network != null && jsonWebSocketWriter != null) {
     jsonWebSocketWriter.write(network);
   }
 }
Exemplo n.º 2
0
 public void broadcastNameList(Namelist namelist) {
   if (namelist != null && jsonWebSocketWriter != null) {
     jsonWebSocketWriter.write(namelist);
   }
 }
Exemplo n.º 3
0
 public void broadcastCluster(Cluster c) {
   if (c != null && jsonWebSocketWriter != null) {
     jsonWebSocketWriter.write(c);
   }
 }
Exemplo n.º 4
0
 public void broadcastMatrix(DataMatrix dataMatrix) {
   if (dataMatrix != null && jsonWebSocketWriter != null) {
     jsonWebSocketWriter.write(dataMatrix);
   }
 }