aboutsummaryrefslogtreecommitdiffstats
path: root/service-monitor/src/main/java/com/yahoo/vespa/service/health/ApplicationHealthMonitorFactory.java
blob: bc05bbae8dc07dd8b8db177d5782ff6f7c78d1ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.service.health;

import com.yahoo.config.provision.ApplicationId;

/**
 * @author hakonhall
 */
@FunctionalInterface
interface ApplicationHealthMonitorFactory {
    ApplicationHealthMonitor create(ApplicationId applicationId);
}