summaryrefslogtreecommitdiffstats
path: root/container-di/src/main/java/com/yahoo/container/di/config/Subscriber.java
blob: c7592ea011e7076184f759d3dbfb9728354608e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.di.config;

import com.yahoo.config.ConfigInstance;
import com.yahoo.vespa.config.ConfigKey;

import java.util.Map;

/**
 * @author tonytv
 * @author gjoranv
 */
public interface Subscriber {
    long waitNextGeneration();
    long generation();

    boolean configChanged();
    Map<ConfigKey<ConfigInstance>, ConfigInstance> config();

    void close();
}