summaryrefslogtreecommitdiffstats
path: root/metrics-proxy/src/main/java/ai/vespa/metricsproxy/service/ServiceListener.java
blob: 810eb5fb908497775613ee0a231d8fa38571c1fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
* Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
 */

package ai.vespa.metricsproxy.service;

import java.util.List;

/**
 * @author Unknown
 */
public interface ServiceListener {
    void setServices(List<VespaService> services);
}