本文整理汇总了Java中javax.management.remote.rmi.RMIConnection类的典型用法代码示例。如果您正苦于以下问题:Java RMIConnection类的具体用法?Java RMIConnection怎么用?Java RMIConnection使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
RMIConnection类属于javax.management.remote.rmi包,在下文中一共展示了RMIConnection类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: main
import javax.management.remote.rmi.RMIConnection; //导入依赖的package包/类
public static void main(String[] args) throws Exception {
JMXServiceURL url = new JMXServiceURL("service:jmx:rmi://");
MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
RMIJRMPServerImplSub impl = new RMIJRMPServerImplSub();
System.out.println("Creating connectorServer");
connectorServer = new RMIConnectorServer(url, null, impl, mbs);
System.out.println("Starting connectorServer");
connectorServer.start();
System.out.println("Making client");
RMIConnection cc = impl.newClient(null);
System.out.println("Closing client");
cc.close();
if (connectorServer.isActive()) {
System.out.println("Stopping connectorServer");
connectorServer.stop();
}
if (failure == null)
System.out.println("TEST PASSED, no deadlock");
else
System.out.println("TEST FAILED");
}
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:23,代码来源:ConnectorStopDeadlockTest.java
示例2: clientClosed
import javax.management.remote.rmi.RMIConnection; //导入依赖的package包/类
@Override
protected void clientClosed(RMIConnection conn) throws IOException {
System.out.println("clientClosed, will call connectorServer.stop");
final Exchanger<Void> x = new Exchanger<Void>();
Thread t = new Thread() {
public void run() {
try {
connectorServer.stop();
} catch (Exception e) {
fail(e);
}
}
};
t.setName("connectorServer.stop");
t.start();
waitForBlock(t);
/* If this thread is synchronized on RMIServerImpl, then
* the thread that does connectorServer.stop will acquire
* the clientList lock and then block waiting for the RMIServerImpl
* lock. Our call to super.clientClosed will then deadlock because
* it needs to acquire the clientList lock.
*/
System.out.println("calling super.clientClosed");
System.out.flush();
super.clientClosed(conn);
}
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:27,代码来源:ConnectorStopDeadlockTest.java
示例3: makeClient
import javax.management.remote.rmi.RMIConnection; //导入依赖的package包/类
@Override
protected RMIConnection makeClient(String id, Subject subject) throws IOException {
RMIConnectionImpl conn = (RMIConnectionImpl) super.makeClient(id, subject);
connections.add(conn);
return conn;
}
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:7,代码来源:DeadListenerTest.java
示例4: makeClient
import javax.management.remote.rmi.RMIConnection; //导入依赖的package包/类
public RMIConnection makeClient() throws IOException {
return super.makeClient("connection id", null);
}
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:4,代码来源:ConnectorStopDeadlockTest.java
注:本文中的javax.management.remote.rmi.RMIConnection类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论