aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/metrics/executor_threading_service_stats.cpp
blob: 96056efb5902a9883285a05ea4bf5db27e0a26c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Vespa.ai. 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;


}