summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/fastsearch/ClusterParams.java
blob: f95f303e87c82b0ec2c2b0fb596d4333c94575f7 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.prelude.fastsearch;

import com.yahoo.container.search.LegacyEmulationConfig;

/**
 * Helper class for carrying around cluster-related
 * config parameters to the FastSearcher class.
 *
 * @author arnej27959
 */
public class ClusterParams {

    public final int clusterNumber;
    public final String searcherName;
    public final LegacyEmulationConfig emulation;

    /**
     * For compatibility
     */
    public ClusterParams(int number, String name) {
        this(number, name, new LegacyEmulationConfig(new LegacyEmulationConfig.Builder()));
    }

    /**
     * For testcases only
     */
    public ClusterParams(String name) {
        this(0, name);
    }

    /**
     * Make up full ClusterParams
     */
    public ClusterParams(int number, String name, LegacyEmulationConfig cfg) {
        this.clusterNumber = number;
        this.searcherName = name;
        this.emulation = cfg;
    }

}