Example usage for com.amazonaws.services.sqs AmazonSQS interface-usage

List of usage examples for com.amazonaws.services.sqs AmazonSQS interface-usage

Introduction

In this page you can find the example usage for com.amazonaws.services.sqs AmazonSQS interface-usage.

Usage

From source file com.amazon.sqs.javamessaging.AmazonSQSExtendedClient.java

/**
 * Amazon SQS Extended Client extends the functionality of Amazon SQS client.
 * All service calls made using this client are blocking, and will not return
 * until the service call completes.
 *
 * <p>

From source file com.amazon.sqs.javamessaging.AmazonSQSExtendedClientBase.java

abstract class AmazonSQSExtendedClientBase implements AmazonSQS {
    AmazonSQS amazonSqsToBeExtended;

    public AmazonSQSExtendedClientBase(AmazonSQS sqsClient) {
        amazonSqsToBeExtended = sqsClient;
    }

From source file org.flite.mock.amazonaws.sqs.AmazonSQSMock.java

/**
 * Copyright (c) 2012 Flite, Inc
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights

From source file smartthings.brave.sqs.TracingAmazonSQSClient.java

public class TracingAmazonSQSClient implements AmazonSQS {

    public static AmazonSQS create(Tracing tracing, AmazonSQS delegate) {
        return new TracingAmazonSQSClient(AmazonSQSClientTracing.create(tracing), delegate);
    }