Package com.sun.messaging.jmq.util.txnlog

Examples of com.sun.messaging.jmq.util.txnlog.TransactionLogRecord.notify()


      // wake up waiting thread
  //    log("synchronized (entry) ");
      synchronized (entry) {
  //      log("notifying entry ");
        entry.setWritten(true);
        entry.notify();
      }

      return;
    }
View Full Code Here


      TransactionLogRecord e = records[i];
  //    log("synchronized (entry) ");
      synchronized (e) {
  //      log("notifying entry ");
        e.setWritten(true);
        e.notify();
      }
    }

  }
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.