aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/metrics/executor_threading_service_stats.cpp
blob: 9d22344eb2b1dfb4e8c40d08c47701b80b549d8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "executor_threading_service_stats.h"

namespace proton {

ExecutorThreadingServiceStats::ExecutorThreadingServiceStats(Stats masterExecutorStats,
                                                             Stats indexExecutorStats,
                                                             Stats summaryExecutorStats)
    : _masterExecutorStats(masterExecutorStats),
      _indexExecutorStats(indexExecutorStats),
      _summaryExecutorStats(summaryExecutorStats)
{
}

ExecutorThreadingServiceStats::~ExecutorThreadingServiceStats() = default;


}