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

de.otto.synapse.channel.StartFrom Maven / Gradle / Ivy

Go to download

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

There is a newer version: 0.33.1
Show newest version
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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy