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

de.otto.synapse.info.MessageReceiverStatus Maven / Gradle / Ivy

Go to download

A library used at otto.de to implement Spring Boot based event-sourcing microservices.

The newest version!
package de.otto.synapse.info;

public enum MessageReceiverStatus {
    /**
     * Endpoint is initializing, but not yet running.
     */
    STARTING,
    /**
     * Endpoint is successfully initialized, an optional snapshot is read and all shards are known.
     */
    STARTED,
    /**
     * Endpoint is sending/receiving messages
     */
    RUNNING,
    /**
     * Endpoint has successfully finished
     */
    FINISHED,
    /**
     * Endpoint has finished with errors
     */
    FAILED
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy