aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/vespa/streamingvisitors/VisitorFactory.java
blob: 174f3d41cfba177f03a69702b47b40b876b6d140 (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.
package com.yahoo.vespa.streamingvisitors;

import com.yahoo.messagebus.routing.Route;
import com.yahoo.search.Query;

/**
 * A factory that creates Visitors.
 *
 * @author Ulf Carlin
 */
interface VisitorFactory {

    Visitor createVisitor(Query query, String searchCluster, Route route, String documentType, int traceLevelOverride);

}