Amazon.Glacier.Transfer.Internal.DownloadFileCommand.tearDownTopicAndQueue C# (CSharp) Method

tearDownTopicAndQueue() private method

private tearDownTopicAndQueue ( ) : void
return void
        internal void tearDownTopicAndQueue()
        {
            this.snsClient.DeleteTopic(new DeleteTopicRequest() { TopicArn = this.topicArn });
            this.sqsClient.DeleteQueue(new DeleteQueueRequest() { QueueUrl = this.queueUrl });
        }
    }