io.quarkus.funqy.lambda.event.sqs.PipesSqsEventHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-funqy-amazon-lambda Show documentation
Show all versions of quarkus-funqy-amazon-lambda Show documentation
Amazon Lambda Binding for Quarkus Funqy framework
The newest version!
package io.quarkus.funqy.lambda.event.sqs;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.util.List;
import java.util.function.Supplier;
import java.util.stream.Stream;
import com.amazonaws.services.lambda.runtime.events.SQSEvent.SQSMessage;
import io.quarkus.funqy.lambda.config.FunqyAmazonConfig;
import io.quarkus.funqy.lambda.event.EventHandler;
import io.quarkus.funqy.lambda.model.pipes.BatchItemFailures;
import io.quarkus.funqy.lambda.model.pipes.Response;
public class PipesSqsEventHandler implements EventHandler, SQSMessage, Response> {
@Override
public Stream streamEvent(final List event, final FunqyAmazonConfig amazonConfig) {
return event.stream();
}
@Override
public String getIdentifier(SQSMessage message, FunqyAmazonConfig amazonConfig) {
return message.getMessageId();
}
@Override
public Supplier getBody(SQSMessage message, FunqyAmazonConfig amazonConfig) {
if (message.getBody() == null) {
return ByteArrayInputStream::nullInputStream;
}
return () -> new ByteArrayInputStream(message.getBody().getBytes(StandardCharsets.UTF_8));
}
@Override
public Response createResponse(List failures, FunqyAmazonConfig amazonConfig) {
if (!amazonConfig.advancedEventHandling().sqs().reportBatchItemFailures()) {
return null;
}
return new Response(failures.stream().map(BatchItemFailures::new).toList());
}
@Override
public Class getMessageClass() {
return SQSMessage.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy