Package com.hazelcast.core

Examples of com.hazelcast.core.ISemaphore.destroy()


    public void testAcquire_whenNoPermits_andSemaphoreDestroyed() throws InterruptedException {
        final ISemaphore semaphore = hz.getSemaphore(randomString());
        AcquireThread thread = new AcquireThread(semaphore);
        thread.start();

        semaphore.destroy();
        assertEquals(0, semaphore.availablePermits());
    }

    @Test(expected = IllegalStateException.class, timeout = 30000)
    public void testAcquire_whenInstanceShutdown() throws InterruptedException {
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.