aboutsummaryrefslogtreecommitdiffstats
path: root/service-monitor/src/main/java/com/yahoo/vespa/service/health/ApplicationHealthMonitorFactory.java
blob: 6d8fb38f79be9a3da414f197fada71f350b7c5e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright Yahoo. 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);
}