Package org.drools.core.phreak

Examples of org.drools.core.phreak.TupleEntry


    public TupleEntry peek() {
        return head;
    }

    public synchronized TupleEntry remove() {
        TupleEntry entry = head;
        head = head.getNext();
        size--;
        return entry;
    }
View Full Code Here

TOP

Related Classes of org.drools.core.phreak.TupleEntry

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.