aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/vespa/streamingvisitors/VisitorFactory.java
blob: e33bbd206be1787153dfeaa6d50700d81326f7e7 (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.
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 schema, int traceLevelOverride);

}