de.otto.synapse.channel.StartFrom 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.channel;
public enum StartFrom {
/**
* Start consumption of messages at the horizon of the message channel.
*/
HORIZON,
/**
* Start consumption of messages at first message after the specified position.
*/
POSITION,
/**
* Start consumption of messages at the specified position.
*/
AT_POSITION,
/**
* Start consumption of messages at first message at the specified timestamp.
*/
TIMESTAMP
}