Ejemplo n.º 1
0
  public boolean sendTracks() throws IOException {
    if (tracks == null) {
      p("track message not sent");
      return true;
    }

    netTracks.server(tracks);
    p("Tracks Out : " + System.currentTimeMillis());
    return true;
  } // End sendStatus method
Ejemplo n.º 2
0
  public boolean sendImage() throws IOException {
    if (image == null) {
      p("image message not sent");
      return true;
    }

    netImage.server(image);
    p("Image Out : " + System.currentTimeMillis());
    return true;
  } // End sendStatus method
Ejemplo n.º 3
0
  public boolean sendStatus() throws IOException {
    if (status == null) {
      p("status message not sent");
      return true;
    }

    netStat.server(status);
    p("status out : " + System.currentTimeMillis());
    return true;
  } // End sendStatus method