| 12326 | |
| 12327 | |
| 12328 | void Master::Subscribers::send( |
| 12329 | const mesos::master::Event& event, |
| 12330 | const Option<FrameworkInfo>& frameworkInfo, |
| 12331 | const Option<Task>& task) |
| 12332 | { |
| 12333 | VLOG(1) << "Notifying all active subscribers about " << event.type() |
| 12334 | << " event"; |
| 12335 | |
| 12336 | foreachvalue (const Owned<Subscriber>& subscriber, subscribed) { |
| 12337 | subscriber->send(event, frameworkInfo, task); |
| 12338 | } |
| 12339 | } |
| 12340 | |
| 12341 | |
| 12342 | void Master::Subscribers::Subscriber::send( |