本文整理匯總了Java中com.hazelcast.core.Hazelcast.shutdownAll方法的典型用法代碼示例。如果您正苦於以下問題:Java Hazelcast.shutdownAll方法的具體用法?Java Hazelcast.shutdownAll怎麽用?Java Hazelcast.shutdownAll使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.hazelcast.core.Hazelcast
的用法示例。
在下文中一共展示了Hazelcast.shutdownAll方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: preDestroy
import com.hazelcast.core.Hazelcast; //導入方法依賴的package包/類
@After
public void preDestroy() {
if (sf != null) {
sf.close();
sf = null;
}
if (sf2 != null) {
sf2.close();
sf2 = null;
}
Hazelcast.shutdownAll();
factory.shutdownAll();
}
示例2: preDestroy
import com.hazelcast.core.Hazelcast; //導入方法依賴的package包/類
@After
public void preDestroy() {
if (sf != null) {
sf.close();
sf = null;
}
if (sf2 != null) {
sf2.close();
sf2 = null;
}
Hazelcast.shutdownAll();
}
示例3: setup
import com.hazelcast.core.Hazelcast; //導入方法依賴的package包/類
@Before
@Override
public void setup() throws Exception {
Hazelcast.shutdownAll();
ContainerContext cc = CONTAINER_CONTEXT_MAP.get(getClass());
// If container is not exist yet or
// Hazelcast instance is not active (because of such as server shutdown)
if (cc == null) {
// Build a new instance
ensureInstanceIsUp();
CONTAINER_CONTEXT_MAP.put(
getClass(),
new ContainerContext(
this,
serverXml1,
serverXml2,
serverPort1,
serverPort2,
server1,
server2,
null));
} else {
// For every test method a different test class can be constructed for parallel runs by JUnit.
// So container can be exist, but configurations of current test may not be exist.
// For this reason, we should copy container context information (such as ports, servers, ...)
// to current test.
cc.copyInto(this);
// Ensure that instance is up and running
ensureInstanceIsUp();
// After ensuring that system is up, new containers or instance may be created.
// So, we should copy current information from test to current context.
cc.copyFrom(this);
}
}
示例4: setup
import com.hazelcast.core.Hazelcast; //導入方法依賴的package包/類
@Before
@Override
public void setup() throws Exception {
Hazelcast.shutdownAll();
ContainerContext cc = CONTAINER_CONTEXT_MAP.get(getClass());
// If container is not exist yet or
// Hazelcast instance is not active (because of such as server shutdown)
if (cc == null) {
// Build a new instance
ensureInstanceIsUp();
CONTAINER_CONTEXT_MAP.put(
getClass(),
new ContainerContext(
this,
serverXml1,
serverXml2,
serverPort1,
serverPort2,
server1,
server2,
null));
} else {
// For every test method a different test class can be constructed for parallel runs by JUnit.
// So container can be exist, but configurations of current test may not be exist.
// For this reason, we should copy container context information (such as ports, servers, ...)
// to current test.
cc.copyInto(this);
// Ensure that instance is up and running
ensureInstanceIsUp();
// After ensuring that system is up, new containers or instance may be created.
// So, we should copy current information from test to current context.
cc.copyFrom(this);
}
// Clear map
// IMap<String, Object> map = hz.getMap(DEFAULT_MAP_NAME);
// map.clear();
}
示例5: destroy
import com.hazelcast.core.Hazelcast; //導入方法依賴的package包/類
@PreDestroy
public void destroy() {
log.info("Closing Cache Manager");
Hazelcast.shutdownAll();
}
示例6: destroy
import com.hazelcast.core.Hazelcast; //導入方法依賴的package包/類
@PreDestroy
public void destroy() {
log.info("Closing hazelcast");
Hazelcast.shutdownAll();
}
示例7: tearDown
import com.hazelcast.core.Hazelcast; //導入方法依賴的package包/類
@After
public void tearDown() throws IOException {
Hazelcast.shutdownAll();
zkTestServer.close();
}
示例8: resetLockProvider
import com.hazelcast.core.Hazelcast; //導入方法依賴的package包/類
@After
public void resetLockProvider() throws UnknownHostException {
Hazelcast.shutdownAll();
}
示例9: teardown
import com.hazelcast.core.Hazelcast; //導入方法依賴的package包/類
@After
public void teardown() {
Hazelcast.shutdownAll();
}
示例10: cleanup
import com.hazelcast.core.Hazelcast; //導入方法依賴的package包/類
@After
public final void cleanup() {
Hazelcast.shutdownAll();
}
示例11: tearDown
import com.hazelcast.core.Hazelcast; //導入方法依賴的package包/類
@Override
protected void tearDown() throws Exception {
bootstrap.close();
Hazelcast.shutdownAll();
}
示例12: tearDown
import com.hazelcast.core.Hazelcast; //導入方法依賴的package包/類
@After
public void tearDown() throws Exception {
HazelcastClient.shutdownAll();
Hazelcast.shutdownAll();
}
示例13: tearUpAndDown
import com.hazelcast.core.Hazelcast; //導入方法依賴的package包/類
@BeforeClass
@AfterClass
public static void tearUpAndDown() {
Hazelcast.shutdownAll();
}
示例14: killAllHazelcastInstances
import com.hazelcast.core.Hazelcast; //導入方法依賴的package包/類
@BeforeClass
@AfterClass
public static void killAllHazelcastInstances() throws IOException {
Hazelcast.shutdownAll();
}
示例15: cleanup
import com.hazelcast.core.Hazelcast; //導入方法依賴的package包/類
@After
public void cleanup() {
Hazelcast.shutdownAll();
}