Package org.apache.stratum.jcs.engine.memory.shrinking

Examples of org.apache.stratum.jcs.engine.memory.shrinking.ShrinkerThread


            {
                synchronized ( LRUMemoryCache.class )
                {
                    if ( shrinker == null )
                    {
                        shrinker = new ShrinkerThread( this );
                        shrinker.setPriority( shrinker.MIN_PRIORITY );
                        shrinker.start();
                    }
                }
            }
View Full Code Here


            {
                synchronized ( MRUMemoryCache.class )
                {
                    if ( shrinker == null )
                    {
                        shrinker = new ShrinkerThread( this );
                        shrinker.setPriority( shrinker.MIN_PRIORITY );
                        shrinker.start();
                    }
                }
            }
View Full Code Here

TOP

Related Classes of org.apache.stratum.jcs.engine.memory.shrinking.ShrinkerThread

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.