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

pl.domzal.junit.docker.rule.wait.StartConditionCheck Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package pl.domzal.junit.docker.rule.wait;

/**
 * Container startup condition check. Instances of check should
 * be created by implementations of {@link StartCondition}.
 */
public interface StartConditionCheck {

    /**
     * 'Is condition fulfilled?' check.
     */
    boolean check();

    /**
     * Condition description (will show in log messages).
     */
    String describe();

    /**
     * After check cleanup. Use if you check need to do some cleaning after usage.
     */
    void after();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy