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

com.solace.spring.cloud.stream.binder.util.SolaceBatchAcknowledgementException Maven / Gradle / Ivy

There is a newer version: 5.0.1
Show newest version
package com.solace.spring.cloud.stream.binder.util;

import java.util.Set;

public class SolaceBatchAcknowledgementException extends SolaceAcknowledgmentException {

    private final Set failedMessageIndexes;

    public SolaceBatchAcknowledgementException(Set failedMessageIndexes, String message,
                                               Throwable cause) {
        super(message, cause);
        this.failedMessageIndexes = failedMessageIndexes;
    }

    public Set getFailedMessageIndexes() {
        return failedMessageIndexes;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy