Interface IUpdateable
-
public interface IUpdateable
Internal interface for the query backend to singal an update to a query result.- Since:
- 0.9
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
update(Tuple updateElement, boolean isInsertion)
This callback method must be free of exceptions, evenRuntimeException
s (though notError
s).
-
-
-
Method Detail
-
update
void update(Tuple updateElement, boolean isInsertion)
This callback method must be free of exceptions, evenRuntimeException
s (though notError
s).- Parameters:
updateElement
- the tuple that is changedisInsertion
- true if the tuple appeared in the result set, false if disappeared from the result set
-
-