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

io.kroxylicious.testing.kafka.api.TerminationStyle Maven / Gradle / Ivy

Go to download

Provides the abstract API for a KafkaCluster and meta-annotation for annotations that constrain provided clusters.

There is a newer version: 0.10.0
Show newest version
/*
 * 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