Package org.drools.reteoo.ReteooWorkingMemory

Examples of org.drools.reteoo.ReteooWorkingMemory.QueryInsertModifyAction


                                                                                        workingMemory,
                                                                                        null );
       
        collector.setFactHandle( handle );
       
        QueryInsertModifyAction action = new QueryInsertModifyAction(context, handle, leftTuple, varIndexes, srcVarIndexes, this);
        context.getQueue1().addFirst( action );                  
       
        leftTuple.setObject( handle ); // so it can be retracted later and destroyed
    }
View Full Code Here


        InternalFactHandle handle = ( InternalFactHandle ) leftTuple.getObject();
        DroolsQuery queryObject = (DroolsQuery) handle.getObject();
        queryObject.setParameters( args );
        ((UnificationNodeViewChangedEventListener)queryObject.getQueryResultCollector()).setVariables( varIndexes );
      
        QueryInsertModifyAction action = new QueryInsertModifyAction(context, handle, leftTuple, varIndexes, srcVarIndexes, this);
        context.getQueue1().addFirst( action );
    }
View Full Code Here

TOP

Related Classes of org.drools.reteoo.ReteooWorkingMemory.QueryInsertModifyAction

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.