Examples of unregisterLease()


Examples of org.apache.roller.weblogger.business.runnable.ThreadManager.unregisterLease()

        // make sure task is locked
        assertFalse(mgr.registerLease(task));
        TestUtils.endSession(true);
       
        // try to release a lock
        assertTrue(mgr.unregisterLease(task));
        TestUtils.endSession(true);
    }
   
}
View Full Code Here

Examples of org.apache.roller.weblogger.business.runnable.ThreadManager.unregisterLease()

        // make sure task is locked
        assertFalse("Acquired lease a second time when we shouldn't have been able to.",mgr.registerLease(task));
        TestUtils.endSession(false);
       
        // try to release a lock
        assertTrue("Release of lease failed.",mgr.unregisterLease(task));
        // We don't flush here because unregisterLease should flush on its own
        TestUtils.endSession(false);

        // Current unregisterLease semantics are idempotent.  Double release should
        // actually succeed.
View Full Code Here

Examples of org.apache.roller.weblogger.business.runnable.ThreadManager.unregisterLease()

        // We don't flush here because unregisterLease should flush on its own
        TestUtils.endSession(false);

        // Current unregisterLease semantics are idempotent.  Double release should
        // actually succeed.
        assertTrue("Second release failed.", mgr.unregisterLease(task));
        TestUtils.endSession(false);
    }
   
}
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.