Reporter archive with commented instance.

This commit is contained in:
Olga Khlopkova 2019-12-16 12:08:26 +03:00 committed by gmoryes
parent 15ff0c268a
commit c9efec2c72
2 changed files with 7 additions and 4 deletions

View file

@ -314,7 +314,8 @@ RoutingManager::RoutingManager(Callbacks && callbacks, Delegate & delegate)
, m_delegate(delegate)
, m_trackingReporter(platform::CreateSocket(), TRACKING_REALTIME_HOST, TRACKING_REALTIME_PORT,
tracking::Reporter::kPushDelayMs)
, m_trackingReporterArchive(TRACKING_HISTORICAL_HOST)
// TODO(o.khlopkova) uncomment after platform background uploader is ready.
//, m_trackingReporterArchive(TRACKING_HISTORICAL_HOST)
, m_extrapolator(
[this](location::GpsInfo const & gpsInfo) { this->OnExtrapolatedLocationUpdate(gpsInfo); })
{
@ -487,8 +488,9 @@ void RoutingManager::OnLocationUpdate(location::GpsInfo const & info)
{
location::GpsInfo gpsInfo(info);
auto routeMatchingInfo = GetRouteMatchingInfo(gpsInfo);
m_trackingReporterArchive.Insert(m_currentRouterType, info,
m_routingSession.MatchTraffic(routeMatchingInfo));
// TODO(o.khlopkova) uncomment after platform background uploader is ready.
// m_trackingReporterArchive.Insert(m_currentRouterType, info,
// m_routingSession.MatchTraffic(routeMatchingInfo));
}
}

View file

@ -367,7 +367,8 @@ private:
routing::RoutingSession m_routingSession;
Delegate & m_delegate;
tracking::Reporter m_trackingReporter;
tracking::ArchivalReporter m_trackingReporterArchive;
// TODO(o.khlopkova) uncomment after platform background uploader is ready.
// tracking::ArchivalReporter m_trackingReporterArchive;
BookmarkManager * m_bmManager = nullptr;
extrapolation::Extrapolator m_extrapolator;