Examples of HashTableIterator


Examples of org.drools.util.AbstractHashTable.HashTableIterator

    /**
     * This class is not thread safe, changes to the working memory during iteration may give unexpected results
     */
    public Iterator iterateFactHandles() {
        HashTableIterator iterator = new HashTableIterator( this.assertMap );
        iterator.reset();
        return new JavaIteratorAdapter( iterator,
                                        JavaIteratorAdapter.FACT_HANDLE );
    }
View Full Code Here

Examples of org.drools.util.AbstractHashTable.HashTableIterator

    /**
     * This class is not thread safe, changes to the working memory during iteration may give unexpected results
     */
    public Iterator iterateFactHandles(ObjectFilter filter) {
        HashTableIterator iterator = new HashTableIterator( this.assertMap );
        iterator.reset();
        return new JavaIteratorAdapter( iterator,
                                        JavaIteratorAdapter.FACT_HANDLE,
                                        filter );
    }
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.