notify method

void notify(
  1. RawEvent event
)

Notifies each flush policy that an event is being processed

Implementation

void notify(RawEvent event) {
  for (var policy in _policies) {
    policy.onEvent(event);
  }
}