pause method

void pause()

Implementation

void pause() {
  for (int i = 0; i < subscriptions.length; i++) {
    subscriptions[i].pause();
  }
}