All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testcontainers.lifecycle.Startable Maven / Gradle / Ivy

There is a newer version: 1.9.1
Show newest version
package org.testcontainers.lifecycle;

import java.util.Collections;
import java.util.Set;

public interface Startable extends AutoCloseable {
    default Set getDependencies() {
        return Collections.emptySet();
    }

    void start();

    void stop();

    @Override
    default void close() {
        stop();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy