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

com.eventstore.dbclient.ReplayParkedMessagesOptions Maven / Gradle / Ivy

package com.eventstore.dbclient;

import java.time.Duration;

public class ReplayParkedMessagesOptions extends OptionsBase {
    Long stopAt = null;

    public Long getStopAt() {
        return stopAt;
    }

    public ReplayParkedMessagesOptions stopAt(long value) {
        this.stopAt = value;
        return this;
    }

    public static ReplayParkedMessagesOptions get() {
        return new ReplayParkedMessagesOptions();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy