Searched refs:mLatch (Results 1 - 6 of 6) sorted by relevance

/glassfish-3.1.2/common/mbeanserver/src/main/java/org/glassfish/admin/mbeanserver/
H A DPendingConfigBeanJob.java51 private final CountDownLatch mLatch; field in class:PendingConfigBeanJob
61 mLatch = latch;
81 return mLatch;
86 if (mLatch != null)
88 mLatch.countDown();
94 if (mLatch != null)
96 mLatch.await();
/glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/util/
H A DUnregistrationListener.java56 final CountDownLatch mLatch; field in class:UnregistrationListener
61 mLatch = new CountDownLatch(1);
71 mLatch.countDown();
96 final boolean unlatched = mLatch.await(timeoutMillis, TimeUnit.MILLISECONDS);
/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/base/
H A DNotificationServiceTest.java114 private final CountDownLatch mLatch; field in class:NotificationServiceTest.MyListener
118 mLatch = new CountDownLatch(numNeeded);
126 mLatch.countDown();
132 return mLatch.await( amt, units);
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/jmx/
H A DNotificationEmitterSupport.java398 final CountDownLatch mLatch = new CountDownLatch(1); field in class:NotificationEmitterSupport.SenderThread.CountDownLatchNofication
418 notif.mLatch.await();
438 ((CountDownLatchNofication) notif).mLatch.countDown();
/glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/
H A DAMXStartupService.java295 private final CountDownLatch mLatch; field in class:AMXStartupService.AMXLoaderThread
299 mLatch = new CountDownLatch(1);
310 mLatch.countDown();
316 mLatch.await();
/glassfish-3.1.2/common/amx-config-impl/src/main/java/org/glassfish/admin/amx/impl/config/
H A DAMXConfigLoader.java288 final CountDownLatch mLatch; field in class:AMXConfigLoader.Job
292 mLatch = latch;
296 if (mLatch != null) {
297 mLatch.countDown();

Completed in 17 milliseconds