updateChangeNotificationParameters method

void updateChangeNotificationParameters(
  1. WiltChangeNotificationParameters parameters
)

Change the parameter set for change notifications.

Note that database name, host, port and scheme are not changeable.

Implementation

void updateChangeNotificationParameters(
    WiltChangeNotificationParameters parameters) {
  if (_changeNotifier == null) {
    throw WiltException(WiltException.updateCnpNoNotifier);
  }

  _changeNotifier!.parameters = parameters;
}