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

com.pushtechnology.diffusion.client.features.TopicCreationResult Maven / Gradle / Ivy

There is a newer version: 6.11.2
Show newest version
/*******************************************************************************
 * Copyright (c) 2023 DiffusionData Ltd., All Rights Reserved.
 *
 * Use is subject to license terms.
 *
 * NOTICE: All information contained herein is, and remains the
 * property of Push Technology. The intellectual and technical
 * concepts contained herein are proprietary to Push Technology and
 * may be covered by U.S. and Foreign Patents, patents in process, and
 * are protected by trade secret or copyright law.
 *******************************************************************************/

package com.pushtechnology.diffusion.client.features;

/**
 * Result indicating whether the operation caused a topic to be created or if
 * it already existed.
 *
 * @author DiffusionData Limited
 * @since 6.2
 */
public enum TopicCreationResult {
    /**
     * A new topic was created.
     */
    CREATED,
    /**
     * A topic with the same specification already exists.
     */
    EXISTS
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy