com.solace.spring.cloud.stream.binder.util.SolaceBatchAcknowledgementException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-cloud-stream-binder-solace Show documentation
Show all versions of spring-cloud-stream-binder-solace Show documentation
A Spring Cloud Stream Binder implementation using the Solace Java API (JCSMP)
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;
}
}