Package org.modeshape.common.collection.ring.GarbageCollectingConsumer

Examples of org.modeshape.common.collection.ring.GarbageCollectingConsumer.Collectable


        this.mask = bufferSize - 1;
        this.buffer = new Object[bufferSize];
        this.executor = executor;
        this.consumerAdapter = consumerAdapter;
        if (gcEntries) {
            this.gcConsumer = this.cursor.createGarbageCollectingConsumer(new Collectable() {

                @Override
                public void collect( long position ) {
                    // System.out.println("----  CLEAR " + position);
                    clearEntry(position);
View Full Code Here

TOP

Related Classes of org.modeshape.common.collection.ring.GarbageCollectingConsumer.Collectable

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.