aboutsummaryrefslogtreecommitdiffstats
path: root/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/internal/TestRuntimeProvider.java
blob: bcf8ab53680fd81d3b46be06f6c3568a00ea7e51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.hosted.cd.internal;

import ai.vespa.hosted.cd.TestRuntime;

import java.util.concurrent.atomic.AtomicReference;

/**
 * @author mortent
 */
public interface TestRuntimeProvider  {

    AtomicReference<TestRuntime> testRuntime = new AtomicReference<>();

    void initialize(byte[] config);

    default void updateReference(TestRuntime testRuntime) {
        TestRuntimeProvider.testRuntime.set(testRuntime);
    }

    static TestRuntime getTestRuntime() {
        return testRuntime.get();
    }

}