public void jmxIsReady() {
    synchronized (jmxReadyLock) {
      localJmxServerReady.set();
    }

    sendJmxReadyMessageIfNecessary();
  }
 @Override
 public void unpause() {
   synchronized (jmxReadyLock) {
     // MNK-2553: Flip the transportConnected switch here in case we receive the transport
     // connected notification
     // late (i.e. after ClientHandshakeManager).
     transportConnected = true;
   }
   sendJmxReadyMessageIfNecessary();
 }