internal ChangeMessageVisibilityBatchResponse ChangeMessageVisibilityBatch(ChangeMessageVisibilityBatchRequest request) { var marshaller = new ChangeMessageVisibilityBatchRequestMarshaller(); var unmarshaller = ChangeMessageVisibilityBatchResponseUnmarshaller.Instance; return(Invoke <ChangeMessageVisibilityBatchRequest, ChangeMessageVisibilityBatchResponse>(request, marshaller, unmarshaller)); }
/// <summary> /// Initiates the asynchronous execution of the ChangeMessageVisibilityBatch operation. /// <seealso cref="Amazon.SQS.IAmazonSQS"/> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ChangeMessageVisibilityBatch operation.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// <returns>The task object representing the asynchronous operation.</returns> public Task <ChangeMessageVisibilityBatchResponse> ChangeMessageVisibilityBatchAsync(ChangeMessageVisibilityBatchRequest request, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new ChangeMessageVisibilityBatchRequestMarshaller(); var unmarshaller = ChangeMessageVisibilityBatchResponseUnmarshaller.Instance; return(Invoke <IRequest, ChangeMessageVisibilityBatchRequest, ChangeMessageVisibilityBatchResponse>(request, marshaller, unmarshaller, signer, cancellationToken)); }
public void ChangeMessageVisibilityBatchMarshallTest() { var operation = service_model.FindOperation("ChangeMessageVisibilityBatch"); var request = InstantiateClassGenerator.Execute<ChangeMessageVisibilityBatchRequest>(); var marshaller = new ChangeMessageVisibilityBatchRequestMarshaller(); var internalRequest = marshaller.Marshall(request); var validator = new AWSQueryValidator(internalRequest.Parameters, request, service_model, operation); validator.Validate(); var payloadResponse = new XmlSampleGenerator(service_model, operation).Execute(); var context = new XmlUnmarshallerContext(Utils.CreateStreamFromString(payloadResponse), false, null); var response = ChangeMessageVisibilityBatchResponseUnmarshaller.Instance.Unmarshall(context) as ChangeMessageVisibilityBatchResponse; InstantiateClassGenerator.ValidateObjectFullyInstantiated(response); }
/// <summary> /// <para>This is a batch version of ChangeMessageVisibility. It takes multiple receipt handles and performs the operation on each of the them. /// The result of the operation on each message is reported individually in the response.</para> /// </summary> /// /// <param name="changeMessageVisibilityBatchRequest">Container for the necessary parameters to execute the ChangeMessageVisibilityBatch service /// method on AmazonSQS.</param> /// /// <returns>The response from the ChangeMessageVisibilityBatch service method, as returned by AmazonSQS.</returns> /// /// <exception cref="T:Amazon.SQS.Model.BatchEntryIdsNotDistinctException" /> /// <exception cref="T:Amazon.SQS.Model.TooManyEntriesInBatchRequestException" /> /// <exception cref="T:Amazon.SQS.Model.InvalidBatchEntryIdException" /> /// <exception cref="T:Amazon.SQS.Model.EmptyBatchRequestException" /> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> public Task<ChangeMessageVisibilityBatchResponse> ChangeMessageVisibilityBatchAsync(ChangeMessageVisibilityBatchRequest changeMessageVisibilityBatchRequest, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new ChangeMessageVisibilityBatchRequestMarshaller(); var unmarshaller = ChangeMessageVisibilityBatchResponseUnmarshaller.GetInstance(); return Invoke<IRequest, ChangeMessageVisibilityBatchRequest, ChangeMessageVisibilityBatchResponse>(changeMessageVisibilityBatchRequest, marshaller, unmarshaller, signer, cancellationToken); }
/// <summary> /// Initiates the asynchronous execution of the ChangeMessageVisibilityBatch operation. /// <seealso cref="Amazon.SQS.IAmazonSQS.ChangeMessageVisibilityBatch"/> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ChangeMessageVisibilityBatch operation.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// <returns>The task object representing the asynchronous operation.</returns> public async Task<ChangeMessageVisibilityBatchResponse> ChangeMessageVisibilityBatchAsync(ChangeMessageVisibilityBatchRequest request, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new ChangeMessageVisibilityBatchRequestMarshaller(); var unmarshaller = ChangeMessageVisibilityBatchResponseUnmarshaller.GetInstance(); var response = await Invoke<IRequest, ChangeMessageVisibilityBatchRequest, ChangeMessageVisibilityBatchResponse>(request, marshaller, unmarshaller, signer, cancellationToken) .ConfigureAwait(continueOnCapturedContext: false); return response; }
/// <summary> /// Initiates the asynchronous execution of the ChangeMessageVisibilityBatch operation. /// <seealso cref="Amazon.SQS.IAmazonSQS"/> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ChangeMessageVisibilityBatch operation on AmazonSQSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndChangeMessageVisibilityBatch /// operation.</returns> public IAsyncResult BeginChangeMessageVisibilityBatch(ChangeMessageVisibilityBatchRequest request, AsyncCallback callback, object state) { var marshaller = new ChangeMessageVisibilityBatchRequestMarshaller(); var unmarshaller = ChangeMessageVisibilityBatchResponseUnmarshaller.Instance; return BeginInvoke<ChangeMessageVisibilityBatchRequest>(request, marshaller, unmarshaller, callback, state); }
/// <summary> /// Changes the visibility timeout of multiple messages. This is a batch version /// of <a>ChangeMessageVisibility</a>. The result of the action on each message is /// reported individually in the response. You can send up to 10 <a>ChangeMessageVisibility</a> /// requests with each <code>ChangeMessageVisibilityBatch</code> action. /// /// <important>Because the batch request can result in a combination of successful /// and unsuccessful actions, you should check for batch errors even when the call /// returns an HTTP status code of 200.</important> <note>Some API actions take lists /// of parameters. These lists are specified using the <code>param.n</code> notation. /// Values of <code>n</code> are integers starting from 1. For example, a parameter /// list with two elements looks like this: </note> /// <para> /// <code>&Attribute.1=this</code> /// </para> /// /// <para> /// <code>&Attribute.2=that</code> /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ChangeMessageVisibilityBatch service method.</param> /// /// <returns>The response from the ChangeMessageVisibilityBatch service method, as returned by SQS.</returns> /// <exception cref="BatchEntryIdsNotDistinctException"> /// Two or more batch entries have the same <code>Id</code> in the request. /// </exception> /// <exception cref="EmptyBatchRequestException"> /// Batch request does not contain an entry. /// </exception> /// <exception cref="InvalidBatchEntryIdException"> /// The <code>Id</code> of a batch entry in a batch request does not abide by the /// specification. /// </exception> /// <exception cref="TooManyEntriesInBatchRequestException"> /// Batch request contains more number of entries than permissible. /// </exception> public ChangeMessageVisibilityBatchResponse ChangeMessageVisibilityBatch(ChangeMessageVisibilityBatchRequest request) { var marshaller = new ChangeMessageVisibilityBatchRequestMarshaller(); var unmarshaller = ChangeMessageVisibilityBatchResponseUnmarshaller.Instance; return Invoke<ChangeMessageVisibilityBatchRequest,ChangeMessageVisibilityBatchResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Initiates the asynchronous execution of the ChangeMessageVisibilityBatch operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ChangeMessageVisibilityBatch operation.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// <returns>The task object representing the asynchronous operation.</returns> public Task<ChangeMessageVisibilityBatchResponse> ChangeMessageVisibilityBatchAsync(ChangeMessageVisibilityBatchRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new ChangeMessageVisibilityBatchRequestMarshaller(); var unmarshaller = ChangeMessageVisibilityBatchResponseUnmarshaller.Instance; return InvokeAsync<ChangeMessageVisibilityBatchRequest,ChangeMessageVisibilityBatchResponse>(request, marshaller, unmarshaller, cancellationToken); }
IAsyncResult invokeChangeMessageVisibilityBatch(ChangeMessageVisibilityBatchRequest changeMessageVisibilityBatchRequest, AsyncCallback callback, object state, bool synchronized) { IRequest irequest = new ChangeMessageVisibilityBatchRequestMarshaller().Marshall(changeMessageVisibilityBatchRequest); var unmarshaller = ChangeMessageVisibilityBatchResponseUnmarshaller.GetInstance(); AsyncResult result = new AsyncResult(irequest, callback, state, synchronized, signer, unmarshaller); Invoke(result); return result; }
/// <summary> /// Initiates the asynchronous execution of the ChangeMessageVisibilityBatch operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ChangeMessageVisibilityBatch operation on AmazonSQSClient.</param> /// <param name="callback">An Action delegate that is invoked when the operation completes.</param> /// <param name="options">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> public void ChangeMessageVisibilityBatchAsync(ChangeMessageVisibilityBatchRequest request, AmazonServiceCallback<ChangeMessageVisibilityBatchRequest, ChangeMessageVisibilityBatchResponse> callback, AsyncOptions options = null) { options = options == null?new AsyncOptions():options; var marshaller = new ChangeMessageVisibilityBatchRequestMarshaller(); var unmarshaller = ChangeMessageVisibilityBatchResponseUnmarshaller.Instance; Action<AmazonWebServiceRequest, AmazonWebServiceResponse, Exception, AsyncOptions> callbackHelper = null; if(callback !=null ) callbackHelper = (AmazonWebServiceRequest req, AmazonWebServiceResponse res, Exception ex, AsyncOptions ao) => { AmazonServiceResult<ChangeMessageVisibilityBatchRequest,ChangeMessageVisibilityBatchResponse> responseObject = new AmazonServiceResult<ChangeMessageVisibilityBatchRequest,ChangeMessageVisibilityBatchResponse>((ChangeMessageVisibilityBatchRequest)req, (ChangeMessageVisibilityBatchResponse)res, ex , ao.State); callback(responseObject); }; BeginInvoke<ChangeMessageVisibilityBatchRequest>(request, marshaller, unmarshaller, options, callbackHelper); }
IAsyncResult invokeChangeMessageVisibilityBatch(ChangeMessageVisibilityBatchRequest request, AsyncCallback callback, object state, bool synchronized) { var marshaller = new ChangeMessageVisibilityBatchRequestMarshaller(); var unmarshaller = ChangeMessageVisibilityBatchResponseUnmarshaller.Instance; return Invoke(request, callback, state, synchronized, marshaller, unmarshaller, signer); }