Package org.apache.jcs.engine.control.event

Examples of org.apache.jcs.engine.control.event.TestElementEventHandler


                            long n_start = System.currentTimeMillis();
                            for ( int n = 0; n < num; n++ )
                            {
                                IElementAttributes attrp = cache_control.getElementAttributes();
                                TestElementEventHandler hand = new TestElementEventHandler();
                                attrp.addElementEventHandler( hand );
                                cache_control.put( "key" + n,
                                    "data" + n + " put from ta = junk", attrp );
                            }
                            long n_end = System.currentTimeMillis();
View Full Code Here


                            long n_start = System.currentTimeMillis();
                            for ( int n = 0; n < num; n++ )
                            {
                                IElementAttributes attrp = cache_control.getElementAttributes();
                                TestElementEventHandler hand = new TestElementEventHandler();
                                attrp.addElementEventHandler( hand );
                                cache_control.put( "key" + n,
                                    "data" + n + " put from ta = junk", attrp );
                            }
                            long n_end = System.currentTimeMillis();
View Full Code Here

TOP

Related Classes of org.apache.jcs.engine.control.event.TestElementEventHandler

Copyright © 2018 www.massapicom. 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.