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

#pragma once

#include <cstdint>

namespace search::engine {

struct MonitorReply
{
    uint64_t                  activeDocs;
    int32_t                   distribution_key;
    uint32_t                  timestamp;
    bool                      is_blocking_writes;

    MonitorReply();
};

}