aboutsummaryrefslogtreecommitdiffstats
path: root/container-disc/src/main/java/com/yahoo/container/jdisc/jrt/JrtFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-disc/src/main/java/com/yahoo/container/jdisc/jrt/JrtFactory.java')
-rw-r--r--container-disc/src/main/java/com/yahoo/container/jdisc/jrt/JrtFactory.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/container-disc/src/main/java/com/yahoo/container/jdisc/jrt/JrtFactory.java b/container-disc/src/main/java/com/yahoo/container/jdisc/jrt/JrtFactory.java
new file mode 100644
index 00000000000..052aaad1bd7
--- /dev/null
+++ b/container-disc/src/main/java/com/yahoo/container/jdisc/jrt/JrtFactory.java
@@ -0,0 +1,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();
+
+}