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

}