[alohalytics] Updated demo to process all events in the event_base.h

This commit is contained in:
Alex Zolotarev 2015-06-18 23:33:00 +03:00 committed by Alex Zolotarev
parent 5a87f34aac
commit 26e6bddf24

View file

@ -42,8 +42,11 @@ struct Processor {
<< std::endl;
}
void operator()(const AlohalyticsIdEvent & event) { std::cout << event.ToString() << std::endl; }
void operator()(const AlohalyticsIdServerEvent & event) { std::cout << event.ToString() << std::endl; }
void operator()(const AlohalyticsKeyEvent & event) { std::cout << event.ToString() << std::endl; }
void operator()(const AlohalyticsKeyLocationEvent & event) { std::cout << event.ToString() << std::endl; }
void operator()(const AlohalyticsKeyValueEvent & event) { std::cout << event.ToString() << std::endl; }
void operator()(const AlohalyticsKeyValueLocationEvent & event) { std::cout << event.ToString() << std::endl; }
void operator()(const AlohalyticsKeyPairsEvent & event) { std::cout << event.ToString() << std::endl; }
void operator()(const AlohalyticsKeyPairsLocationEvent & event) { std::cout << event.ToString() << std::endl; }
};
@ -56,7 +59,8 @@ int main(int, char **) {
std::unique_ptr<AlohalyticsBaseEvent> ptr;
ar(ptr);
bricks::rtti::RuntimeDispatcher<AlohalyticsBaseEvent, AlohalyticsKeyPairsLocationEvent, AlohalyticsKeyPairsEvent,
AlohalyticsIdEvent, AlohalyticsKeyValueEvent,
AlohalyticsIdServerEvent, AlohalyticsIdEvent, AlohalyticsKeyValueLocationEvent,
AlohalyticsKeyValueEvent, AlohalyticsKeyLocationEvent,
AlohalyticsKeyEvent>::DispatchCall(*ptr, processor);
}
} catch (const cereal::Exception &) {