aboutsummaryrefslogtreecommitdiffstats
path: root/container-disc/src/main/java/com/yahoo/container/jdisc/jrt/JrtFactory.java
blob: 052aaad1bd72a530cecfe4b870701cb38c851bbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2019 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.jdisc.jrt;

import com.yahoo.jrt.Supervisor;

/**
 * A factory for JRT {@link Supervisor}
 *
 * @author bjorncs
 */
public interface JrtFactory {

    Supervisor createSupervisor();

}