We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQSConnectionFactory
SqsAsyncClient
SQSConnectionFactory can consume only SqsClient, but not SqsAsyncClient. Previously in 1 version of the library SQSConnectionFactory used https://docs.aws.amazon.com/en_us/AWSJavaSDK/latest/javadoc/com/amazonaws/services/sqs/AmazonSQS.html interface that was a parent for https://docs.aws.amazon.com/en_us/AWSJavaSDK/latest/javadoc/com/amazonaws/services/sqs/AmazonSQSAsyncClient.html and https://docs.aws.amazon.com/en_us/AWSJavaSDK/latest/javadoc/com/amazonaws/services/sqs/AmazonSQSClient.html. Right now in AWS SDK 2 SqsClient is not a parent for SqsAsyncClient. In this case can't create connection for SqsAsyncClient.
SqsClient
The text was updated successfully, but these errors were encountered:
No branches or pull requests
SQSConnectionFactory
can consume onlySqsClient
, but notSqsAsyncClient
. Previously in 1 version of the librarySQSConnectionFactory
used https://docs.aws.amazon.com/en_us/AWSJavaSDK/latest/javadoc/com/amazonaws/services/sqs/AmazonSQS.html interface that was a parent for https://docs.aws.amazon.com/en_us/AWSJavaSDK/latest/javadoc/com/amazonaws/services/sqs/AmazonSQSAsyncClient.html and https://docs.aws.amazon.com/en_us/AWSJavaSDK/latest/javadoc/com/amazonaws/services/sqs/AmazonSQSClient.html. Right now in AWS SDK 2SqsClient
is not a parent forSqsAsyncClient
. In this case can't create connection forSqsAsyncClient
.The text was updated successfully, but these errors were encountered: