com.amazonaws.services.kinesis.model.Record.setApproximateArrivalTimestamp()方法的使用及代码示例

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

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

Record.setApproximateArrivalTimestamp介绍

[英]The approximate time that the record was inserted into the stream.
[中]记录插入流的大致时间。

代码示例

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

/**
 * <p>
 * The approximate time that the record was inserted into the stream.
 * </p>
 * 
 * @param approximateArrivalTimestamp
 *        The approximate time that the record was inserted into the stream.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public Record withApproximateArrivalTimestamp(java.util.Date approximateArrivalTimestamp) {
  setApproximateArrivalTimestamp(approximateArrivalTimestamp);
  return this;
}

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

record.setApproximateArrivalTimestamp(context.getUnmarshaller(java.util.Date.class).unmarshall(context));

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

/**
 * <p>
 * The approximate time that the record was inserted into the stream.
 * </p>
 * 
 * @param approximateArrivalTimestamp
 *        The approximate time that the record was inserted into the stream.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public Record withApproximateArrivalTimestamp(java.util.Date approximateArrivalTimestamp) {
  setApproximateArrivalTimestamp(approximateArrivalTimestamp);
  return this;
}

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

.unmarshall(context));
} else if (name.equals("ApproximateArrivalTimestamp")) {
  record.setApproximateArrivalTimestamp(DateJsonUnmarshaller.getInstance()
      .unmarshall(context));
} else if (name.equals("Data")) {

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

record.setApproximateArrivalTimestamp(context.getUnmarshaller(java.util.Date.class).unmarshall(context));

相关文章