com.amazonaws.services.sqs.executors.SerializableFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amazon-sqs-java-temporary-queues-client Show documentation
Show all versions of amazon-sqs-java-temporary-queues-client Show documentation
An Amazon SQS client that supports creating lightweight, automatically-deleted temporary queues, for use in common messaging patterns such as Request/Response. See http://aws.amazon.com/sqs.
The newest version!
package com.amazonaws.services.sqs.executors;
import java.io.Serializable;
import java.util.function.Function;
public interface SerializableFunction extends Serializable, Function {
public static SerializableFunction serializable(SerializableFunction function) {
return function;
}
}