aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/engine/monitorreply.cpp
blob: 3414603a8937d63b92b3190f5b876d212cb82fe1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "monitorreply.h"

namespace search::engine {

MonitorReply::MonitorReply()
    : mld(),
      activeDocsRequested(false),
      partid(),
      distribution_key(-1),
      timestamp(),
      totalNodes(),
      activeNodes(),
      totalParts(),
      activeParts(),
      activeDocs(0),
      flags(),
      is_blocking_writes(false)
{ }

}