notifyChanged method

void notifyChanged(
  1. Iterable<String> tables
)

Notify listeners of external or raw-SQL changes. Rollback discards these notifications; an uncertain COMMIT invalidates conservatively.

Implementation

void notifyChanged(Iterable<String> tables) {
  checkActive();
  _notifyChanged(tables);
}