use of org.drools.core.reteoo.RightTupleImpl in project drools by kiegroup.
the class RightBuilder method insert.
public RightBuilder insert(Object... objects) {
for (Object object : objects) {
InternalFactHandle fh = (InternalFactHandle) wm.insert(object);
RightTuple rightTuple = new RightTupleImpl(fh, sink);
rightTuple.setPropagationContext(new PhreakPropagationContext());
rightTuples.addInsert(rightTuple);
}
return this;
}
Aggregations