aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/engine/monitorreply.cpp
blob: 139c377a6263c1e2455e53983e85355a8d51261b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. 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)
{ }

}