io.kroxylicious.testing.kafka.api.TerminationStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testing-api Show documentation
Show all versions of testing-api Show documentation
Provides the abstract API for a KafkaCluster and meta-annotation for annotations that constrain provided clusters.
/*
* Copyright Kroxylicious Authors.
*
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/
package io.kroxylicious.testing.kafka.api;
public enum TerminationStyle {
/**
* Graceful termination style where components are requested to terminate and have the opportunity to close
* resources (files, network connections etc.) that they are using before they exit.
*/
GRACEFUL,
/**
* Abrupt termination style where components are killed immediately.
*/
ABRUPT
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy