Package org.jamesii.core.util.misc.session

Examples of org.jamesii.core.util.misc.session.IExpiring.expire()


    WeakReference<IExpiring> testRef = new WeakReference<>(sessionObject);
    assertNotNull(testRef.get());
    sessionObject.activated();
    sessionObject.hasBeenActive();
    sessionObject.hasBeenActive();
    sessionObject.expire();
    sessionObject = null;
    System.gc();
    assertNull("There should be no references left to the object.",
        testRef.get());
  }
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.