aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/emptysearchview.h
blob: a3e2a2b176c4707dd88c62b32ac86c39e07b1654 (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
24
25
26
27
28
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/searchcore/proton/summaryengine/isearchhandler.h>

namespace proton {

class EmptySearchView : public ISearchHandler
{
public:
    typedef std::shared_ptr<EmptySearchView> SP;

    EmptySearchView();

    /**
     * Implements ISearchHandler
     */
    virtual std::unique_ptr<DocsumReply> getDocsums(const DocsumRequest & req) override;

    virtual std::unique_ptr<SearchReply>
    match(const ISearchHandler::SP &searchHandler,
          const SearchRequest &req,
          vespalib::ThreadBundle &threadBundle) const override;
};

} // namespace proton