Uses of Interface
org.drools.ruleunits.api.DataHandle
-
Packages that use DataHandle Package Description org.drools.ruleunits.api -
-
Uses of DataHandle in org.drools.ruleunits.api
Methods in org.drools.ruleunits.api that return DataHandle Modifier and Type Method Description DataHandle
DataStore. add(T object)
Add an object to this DataStore.DataHandle
SingletonStore. set(T value)
Set the value in this singleton data storeMethods in org.drools.ruleunits.api with parameters of type DataHandle Modifier and Type Method Description void
DataProcessor. delete(DataHandle handle)
Notifies this DataProcessor that an object with the givenDataHandle
has been deleted from the observedDataSource
.FactHandle
DataProcessor. insert(DataHandle handle, T object)
Notifies this DataProcessor that an object with the givenDataHandle
has been inserted in the observedDataSource
.void
DataStore. remove(DataHandle handle)
Deletes the fact for which the givenDataHandle
was assigned.void
DataProcessor. update(DataHandle handle, T object)
Notifies this DataProcessor that an object with the givenDataHandle
has been updated in the observedDataSource
.void
DataStore. update(DataHandle handle, T object)
Updates the fact for which the givenDataHandle
was assigned with the new fact set as the second parameter in this method.
-