/** Open communication with the cryobay. */
 public void connect(String host, int port) {
   m_CryoSocket = new CryoMonitorSocket(host, port); // startup delay is here
   m_reader = new Reader();
   m_reader.start();
 }