aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/engine/monitorreply.cpp
blob: 5d9c381515d19b6047871b8aff8da4b4e8cf46d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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()
    : activeDocs(0),
      distribution_key(-1),
      timestamp(),
      is_blocking_writes(false)
{ }

}