/**
Wait until AMX has loaded and is ready for use.
<p>
This will <em>not</em> cause AMX to load; it will block forever until AMX is ready. In other words,
don't call this method unless it's a convenient thread that can wait forever.
*/
public ObjectName waitAMXReady( final MBeanServerConnection server)
{
final WaitForDomainRootListenerCallback callback = new WaitForDomainRootListenerCallback(server);
listenForDomainRoot( server, callback );
callback.await();
return callback.getRegistered();
}
AMXGlassfish.java 文件源码
java
阅读 28
收藏 0
点赞 0
评论 0
项目:openjdk-jdk10
作者:
评论列表
文章目录