com.amazonaws.services.sqs.model.ReceiveMessageRequest.getVisibilityTimeout()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(15.2k)|赞(0)|评价(0)|浏览(69)

本文整理了Java中com.amazonaws.services.sqs.model.ReceiveMessageRequest.getVisibilityTimeout方法的一些代码示例,展示了ReceiveMessageRequest.getVisibilityTimeout的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ReceiveMessageRequest.getVisibilityTimeout方法的具体详情如下:
包路径:com.amazonaws.services.sqs.model.ReceiveMessageRequest
类名称:ReceiveMessageRequest
方法名:getVisibilityTimeout

ReceiveMessageRequest.getVisibilityTimeout介绍

[英]The duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved by a ReceiveMessage request.
[中]接收到的消息在被ReceiveMessage请求检索后对后续检索请求隐藏的持续时间(秒)。

代码示例

代码示例来源:origin: aws/aws-sdk-java

/**
 * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
 * redacted from this string using a placeholder value.
 *
 * @return A string representation of this object.
 *
 * @see java.lang.Object#toString()
 */
@Override
public String toString() {
  StringBuilder sb = new StringBuilder();
  sb.append("{");
  if (getQueueUrl() != null)
    sb.append("QueueUrl: ").append(getQueueUrl()).append(",");
  if (getAttributeNames() != null)
    sb.append("AttributeNames: ").append(getAttributeNames()).append(",");
  if (getMessageAttributeNames() != null)
    sb.append("MessageAttributeNames: ").append(getMessageAttributeNames()).append(",");
  if (getMaxNumberOfMessages() != null)
    sb.append("MaxNumberOfMessages: ").append(getMaxNumberOfMessages()).append(",");
  if (getVisibilityTimeout() != null)
    sb.append("VisibilityTimeout: ").append(getVisibilityTimeout()).append(",");
  if (getWaitTimeSeconds() != null)
    sb.append("WaitTimeSeconds: ").append(getWaitTimeSeconds()).append(",");
  if (getReceiveRequestAttemptId() != null)
    sb.append("ReceiveRequestAttemptId: ").append(getReceiveRequestAttemptId());
  sb.append("}");
  return sb.toString();
}

代码示例来源:origin: aws/aws-sdk-java

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getQueueUrl() == null) ? 0 : getQueueUrl().hashCode());
  hashCode = prime * hashCode + ((getAttributeNames() == null) ? 0 : getAttributeNames().hashCode());
  hashCode = prime * hashCode + ((getMessageAttributeNames() == null) ? 0 : getMessageAttributeNames().hashCode());
  hashCode = prime * hashCode + ((getMaxNumberOfMessages() == null) ? 0 : getMaxNumberOfMessages().hashCode());
  hashCode = prime * hashCode + ((getVisibilityTimeout() == null) ? 0 : getVisibilityTimeout().hashCode());
  hashCode = prime * hashCode + ((getWaitTimeSeconds() == null) ? 0 : getWaitTimeSeconds().hashCode());
  hashCode = prime * hashCode + ((getReceiveRequestAttemptId() == null) ? 0 : getReceiveRequestAttemptId().hashCode());
  return hashCode;
}

代码示例来源:origin: aws/aws-sdk-java

/**
 * We prefetch and load results in the buffer by making basic requests. I.E. we don't request
 * queue or message attributes and we have a default visibility timeout. If the user's request
 * deviates from the basic request we can't fulfill the request directly from the buffer, we
 * have to hit SQS directly (Note that when going to SQS directly messages currently in the
 * buffer may be unavailable due to the visibility timeout).
 *
 * @return True if the request can be fulfilled directly from the buffer, false if we have to go
 *         back to the service to fetch the results
 */
private boolean canBeRetrievedFromQueueBuffer(ReceiveMessageRequest rq) {
  return !hasRequestedQueueAttributes(rq) && !hasRequestedMessageAttributes(rq) && isBufferingEnabled()
      && (rq.getVisibilityTimeout() == null);
}

代码示例来源:origin: aws/aws-sdk-java

if (other.getMaxNumberOfMessages() != null && other.getMaxNumberOfMessages().equals(this.getMaxNumberOfMessages()) == false)
  return false;
if (other.getVisibilityTimeout() == null ^ this.getVisibilityTimeout() == null)
  return false;
if (other.getVisibilityTimeout() != null && other.getVisibilityTimeout().equals(this.getVisibilityTimeout()) == false)
  return false;
if (other.getWaitTimeSeconds() == null ^ this.getWaitTimeSeconds() == null)

代码示例来源:origin: aws/aws-sdk-java

if (receiveMessageRequest.getVisibilityTimeout() != null) {
  request.addParameter("VisibilityTimeout", StringUtils.fromInteger(receiveMessageRequest.getVisibilityTimeout()));

代码示例来源:origin: aws-amplify/aws-sdk-android

/**
 * Returns a string representation of this object; useful for testing and
 * debugging.
 *
 * @return A string representation of this object.
 * @see java.lang.Object#toString()
 */
@Override
public String toString() {
  StringBuilder sb = new StringBuilder();
  sb.append("{");
  if (getQueueUrl() != null)
    sb.append("QueueUrl: " + getQueueUrl() + ",");
  if (getAttributeNames() != null)
    sb.append("AttributeNames: " + getAttributeNames() + ",");
  if (getMessageAttributeNames() != null)
    sb.append("MessageAttributeNames: " + getMessageAttributeNames() + ",");
  if (getMaxNumberOfMessages() != null)
    sb.append("MaxNumberOfMessages: " + getMaxNumberOfMessages() + ",");
  if (getVisibilityTimeout() != null)
    sb.append("VisibilityTimeout: " + getVisibilityTimeout() + ",");
  if (getWaitTimeSeconds() != null)
    sb.append("WaitTimeSeconds: " + getWaitTimeSeconds() + ",");
  if (getReceiveRequestAttemptId() != null)
    sb.append("ReceiveRequestAttemptId: " + getReceiveRequestAttemptId());
  sb.append("}");
  return sb.toString();
}

代码示例来源:origin: aws-amplify/aws-sdk-android

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getQueueUrl() == null) ? 0 : getQueueUrl().hashCode());
  hashCode = prime * hashCode
      + ((getAttributeNames() == null) ? 0 : getAttributeNames().hashCode());
  hashCode = prime
      * hashCode
      + ((getMessageAttributeNames() == null) ? 0 : getMessageAttributeNames().hashCode());
  hashCode = prime * hashCode
      + ((getMaxNumberOfMessages() == null) ? 0 : getMaxNumberOfMessages().hashCode());
  hashCode = prime * hashCode
      + ((getVisibilityTimeout() == null) ? 0 : getVisibilityTimeout().hashCode());
  hashCode = prime * hashCode
      + ((getWaitTimeSeconds() == null) ? 0 : getWaitTimeSeconds().hashCode());
  hashCode = prime
      * hashCode
      + ((getReceiveRequestAttemptId() == null) ? 0 : getReceiveRequestAttemptId()
          .hashCode());
  return hashCode;
}

代码示例来源:origin: aws-amplify/aws-sdk-android

&& other.getMaxNumberOfMessages().equals(this.getMaxNumberOfMessages()) == false)
  return false;
if (other.getVisibilityTimeout() == null ^ this.getVisibilityTimeout() == null)
  return false;
if (other.getVisibilityTimeout() != null
    && other.getVisibilityTimeout().equals(this.getVisibilityTimeout()) == false)
  return false;
if (other.getWaitTimeSeconds() == null ^ this.getWaitTimeSeconds() == null)

代码示例来源:origin: aws-amplify/aws-sdk-android

/**
 * Submits a request to receive some messages from SQS.
 *
 * @return a Future object that will be notified when the operation is
 *         completed; never null;
 */
public Future<ReceiveMessageResult> receiveMessage(ReceiveMessageRequest rq,
    AsyncHandler<ReceiveMessageRequest, ReceiveMessageResult> handler) {
  // only handle simple requests, because these are the settings we
  // pre-fetch with
  boolean noAttributes = (rq.getAttributeNames() == null) || rq.getAttributeNames().isEmpty();
  boolean noMessageAttributesToRetrieve = (rq.getMessageAttributeNames() == null)
      || rq.getMessageAttributeNames().isEmpty();
  boolean bufferngEnabled = (config.getMaxInflightReceiveBatches() > 0)
      && (config.getMaxDoneReceiveBatches() > 0);
  if (noMessageAttributesToRetrieve && noAttributes && bufferngEnabled
      && (rq.getVisibilityTimeout() == null)) {
    QueueBufferCallback<ReceiveMessageRequest, ReceiveMessageResult> callback = null;
    if (handler != null) {
      callback = new QueueBufferCallback<ReceiveMessageRequest, ReceiveMessageResult>(
          handler, rq);
    }
    QueueBufferFuture<ReceiveMessageRequest, ReceiveMessageResult> future = receiveBuffer
        .receiveMessageAsync(rq, callback);
    future.setBuffer(this);
    return future;
  } else {
    return realSqs.receiveMessageAsync(rq);
  }
}

代码示例来源:origin: aws-amplify/aws-sdk-android

request.addParameter(prefix, StringUtils.fromInteger(maxNumberOfMessages));
if (receiveMessageRequest.getVisibilityTimeout() != null) {
  prefix = "VisibilityTimeout";
  Integer visibilityTimeout = receiveMessageRequest.getVisibilityTimeout();
  request.addParameter(prefix, StringUtils.fromInteger(visibilityTimeout));

代码示例来源:origin: com.amazonaws/aws-java-sdk-sqs

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getQueueUrl() == null) ? 0 : getQueueUrl().hashCode());
  hashCode = prime * hashCode + ((getAttributeNames() == null) ? 0 : getAttributeNames().hashCode());
  hashCode = prime * hashCode + ((getMessageAttributeNames() == null) ? 0 : getMessageAttributeNames().hashCode());
  hashCode = prime * hashCode + ((getMaxNumberOfMessages() == null) ? 0 : getMaxNumberOfMessages().hashCode());
  hashCode = prime * hashCode + ((getVisibilityTimeout() == null) ? 0 : getVisibilityTimeout().hashCode());
  hashCode = prime * hashCode + ((getWaitTimeSeconds() == null) ? 0 : getWaitTimeSeconds().hashCode());
  hashCode = prime * hashCode + ((getReceiveRequestAttemptId() == null) ? 0 : getReceiveRequestAttemptId().hashCode());
  return hashCode;
}

代码示例来源:origin: com.amazonaws/aws-java-sdk-sqs

/**
 * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
 * redacted from this string using a placeholder value.
 *
 * @return A string representation of this object.
 *
 * @see java.lang.Object#toString()
 */
@Override
public String toString() {
  StringBuilder sb = new StringBuilder();
  sb.append("{");
  if (getQueueUrl() != null)
    sb.append("QueueUrl: ").append(getQueueUrl()).append(",");
  if (getAttributeNames() != null)
    sb.append("AttributeNames: ").append(getAttributeNames()).append(",");
  if (getMessageAttributeNames() != null)
    sb.append("MessageAttributeNames: ").append(getMessageAttributeNames()).append(",");
  if (getMaxNumberOfMessages() != null)
    sb.append("MaxNumberOfMessages: ").append(getMaxNumberOfMessages()).append(",");
  if (getVisibilityTimeout() != null)
    sb.append("VisibilityTimeout: ").append(getVisibilityTimeout()).append(",");
  if (getWaitTimeSeconds() != null)
    sb.append("WaitTimeSeconds: ").append(getWaitTimeSeconds()).append(",");
  if (getReceiveRequestAttemptId() != null)
    sb.append("ReceiveRequestAttemptId: ").append(getReceiveRequestAttemptId());
  sb.append("}");
  return sb.toString();
}

代码示例来源:origin: com.amazonaws/aws-java-sdk-sqs

/**
 * We prefetch and load results in the buffer by making basic requests. I.E. we don't request
 * queue or message attributes and we have a default visibility timeout. If the user's request
 * deviates from the basic request we can't fulfill the request directly from the buffer, we
 * have to hit SQS directly (Note that when going to SQS directly messages currently in the
 * buffer may be unavailable due to the visibility timeout).
 *
 * @return True if the request can be fulfilled directly from the buffer, false if we have to go
 *         back to the service to fetch the results
 */
private boolean canBeRetrievedFromQueueBuffer(ReceiveMessageRequest rq) {
  return !hasRequestedQueueAttributes(rq) && !hasRequestedMessageAttributes(rq) && isBufferingEnabled()
      && (rq.getVisibilityTimeout() == null);
}

代码示例来源:origin: com.amazonaws/aws-android-sdk-sqs

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getQueueUrl() == null) ? 0 : getQueueUrl().hashCode());
  hashCode = prime * hashCode
      + ((getAttributeNames() == null) ? 0 : getAttributeNames().hashCode());
  hashCode = prime
      * hashCode
      + ((getMessageAttributeNames() == null) ? 0 : getMessageAttributeNames().hashCode());
  hashCode = prime * hashCode
      + ((getMaxNumberOfMessages() == null) ? 0 : getMaxNumberOfMessages().hashCode());
  hashCode = prime * hashCode
      + ((getVisibilityTimeout() == null) ? 0 : getVisibilityTimeout().hashCode());
  hashCode = prime * hashCode
      + ((getWaitTimeSeconds() == null) ? 0 : getWaitTimeSeconds().hashCode());
  hashCode = prime
      * hashCode
      + ((getReceiveRequestAttemptId() == null) ? 0 : getReceiveRequestAttemptId()
          .hashCode());
  return hashCode;
}

代码示例来源:origin: com.amazonaws/aws-android-sdk-sqs

/**
 * Returns a string representation of this object; useful for testing and
 * debugging.
 *
 * @return A string representation of this object.
 * @see java.lang.Object#toString()
 */
@Override
public String toString() {
  StringBuilder sb = new StringBuilder();
  sb.append("{");
  if (getQueueUrl() != null)
    sb.append("QueueUrl: " + getQueueUrl() + ",");
  if (getAttributeNames() != null)
    sb.append("AttributeNames: " + getAttributeNames() + ",");
  if (getMessageAttributeNames() != null)
    sb.append("MessageAttributeNames: " + getMessageAttributeNames() + ",");
  if (getMaxNumberOfMessages() != null)
    sb.append("MaxNumberOfMessages: " + getMaxNumberOfMessages() + ",");
  if (getVisibilityTimeout() != null)
    sb.append("VisibilityTimeout: " + getVisibilityTimeout() + ",");
  if (getWaitTimeSeconds() != null)
    sb.append("WaitTimeSeconds: " + getWaitTimeSeconds() + ",");
  if (getReceiveRequestAttemptId() != null)
    sb.append("ReceiveRequestAttemptId: " + getReceiveRequestAttemptId());
  sb.append("}");
  return sb.toString();
}

代码示例来源:origin: com.amazonaws/aws-java-sdk-sqs

if (other.getMaxNumberOfMessages() != null && other.getMaxNumberOfMessages().equals(this.getMaxNumberOfMessages()) == false)
  return false;
if (other.getVisibilityTimeout() == null ^ this.getVisibilityTimeout() == null)
  return false;
if (other.getVisibilityTimeout() != null && other.getVisibilityTimeout().equals(this.getVisibilityTimeout()) == false)
  return false;
if (other.getWaitTimeSeconds() == null ^ this.getWaitTimeSeconds() == null)

代码示例来源:origin: com.amazonaws/aws-android-sdk-sqs

&& other.getMaxNumberOfMessages().equals(this.getMaxNumberOfMessages()) == false)
  return false;
if (other.getVisibilityTimeout() == null ^ this.getVisibilityTimeout() == null)
  return false;
if (other.getVisibilityTimeout() != null
    && other.getVisibilityTimeout().equals(this.getVisibilityTimeout()) == false)
  return false;
if (other.getWaitTimeSeconds() == null ^ this.getWaitTimeSeconds() == null)

代码示例来源:origin: com.amazonaws/aws-android-sdk-sqs

/**
 * Submits a request to receive some messages from SQS.
 *
 * @return a Future object that will be notified when the operation is
 *         completed; never null;
 */
public Future<ReceiveMessageResult> receiveMessage(ReceiveMessageRequest rq,
    AsyncHandler<ReceiveMessageRequest, ReceiveMessageResult> handler) {
  // only handle simple requests, because these are the settings we
  // pre-fetch with
  boolean noAttributes = (rq.getAttributeNames() == null) || rq.getAttributeNames().isEmpty();
  boolean noMessageAttributesToRetrieve = (rq.getMessageAttributeNames() == null)
      || rq.getMessageAttributeNames().isEmpty();
  boolean bufferngEnabled = (config.getMaxInflightReceiveBatches() > 0)
      && (config.getMaxDoneReceiveBatches() > 0);
  if (noMessageAttributesToRetrieve && noAttributes && bufferngEnabled
      && (rq.getVisibilityTimeout() == null)) {
    QueueBufferCallback<ReceiveMessageRequest, ReceiveMessageResult> callback = null;
    if (handler != null) {
      callback = new QueueBufferCallback<ReceiveMessageRequest, ReceiveMessageResult>(
          handler, rq);
    }
    QueueBufferFuture<ReceiveMessageRequest, ReceiveMessageResult> future = receiveBuffer
        .receiveMessageAsync(rq, callback);
    future.setBuffer(this);
    return future;
  } else {
    return realSqs.receiveMessageAsync(rq);
  }
}

代码示例来源:origin: com.amazonaws/aws-java-sdk-sqs

if (receiveMessageRequest.getVisibilityTimeout() != null) {
  request.addParameter("VisibilityTimeout", StringUtils.fromInteger(receiveMessageRequest.getVisibilityTimeout()));

代码示例来源:origin: com.amazonaws/aws-android-sdk-sqs

request.addParameter(prefix, StringUtils.fromInteger(maxNumberOfMessages));
if (receiveMessageRequest.getVisibilityTimeout() != null) {
  prefix = "VisibilityTimeout";
  Integer visibilityTimeout = receiveMessageRequest.getVisibilityTimeout();
  request.addParameter(prefix, StringUtils.fromInteger(visibilityTimeout));

相关文章

微信公众号

最新文章

更多