autoPurge method

void autoPurge()

Automatically calls purge.

Implementation

void autoPurge() {
  if (allowAutoPurge) {
    purge();
  }
}