de.otto.synapse.info.MessageReceiverStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of synapse-core Show documentation
Show all versions of synapse-core Show documentation
A library used at otto.de to implement Spring Boot based event-sourcing microservices.
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
}