本文整理了Java中org.apache.qpid.proton.message.Message.getCreationTime()
方法的一些代码示例,展示了Message.getCreationTime()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Message.getCreationTime()
方法的具体详情如下:
包路径:org.apache.qpid.proton.message.Message
类名称:Message
方法名:getCreationTime
暂无
代码示例来源:origin: eclipse/hono
/**
* Sets the <em>#SYS_PROPERTY_CREATION_TIME</em> of the AMQP 1.0 message to the current timestamp.
*
* @param msg the message for that the creation-time property is set.
*/
public static void setCreationTime(final Message msg) {
if (msg.getCreationTime() == 0) {
msg.setCreationTime(Instant.now().toEpochMilli());
}
}
代码示例来源:origin: apache/activemq-artemis
/**
* Gets the absolute expiration time property on the message.
*/
public long getCreationTime() {
return getWrappedMessage().getCreationTime();
}
代码示例来源:origin: org.eclipse.hono/hono-core
/**
* Sets the <em>#SYS_PROPERTY_CREATION_TIME</em> of the AMQP 1.0 message to the current timestamp.
*
* @param msg the message for that the creation-time property is set.
*/
public static void setCreationTime(final Message msg) {
if (msg.getCreationTime() == 0) {
msg.setCreationTime(Instant.now().toEpochMilli());
}
}
代码示例来源:origin: org.eclipse.hono/hono-core
/**
* Verify if a device is currently connected to a protocol adapter. This is evaluated at the point in time this
* method is invoked.
* <p>
* This could be used as a trigger condition for an attempt to send a command upstream to the device.
*
* @param msg Message that is evaluated.
* @return Boolean {@code true} if the message signals that the device now should be ready to receive a command,
* {@code false} otherwise.
* @throws NullPointerException If msg is {@code null}.
*/
public static Boolean isDeviceCurrentlyConnected(final Message msg) {
return Optional.ofNullable(MessageHelper.getTimeUntilDisconnect(msg)).map(ttd -> {
if (ttd == MessageHelper.TTD_VALUE_UNLIMITED) {
return Boolean.TRUE;
} else if (ttd == 0) {
return Boolean.FALSE;
} else {
final Instant creationTime = Instant.ofEpochMilli(msg.getCreationTime());
return Instant.now().isBefore(creationTime.plusSeconds(ttd));
}
}).orElse(Boolean.FALSE);
}
代码示例来源:origin: eclipse/hono
/**
* Verify if a device is currently connected to a protocol adapter. This is evaluated at the point in time this
* method is invoked.
* <p>
* This could be used as a trigger condition for an attempt to send a command upstream to the device.
*
* @param msg Message that is evaluated.
* @return Boolean {@code true} if the message signals that the device now should be ready to receive a command,
* {@code false} otherwise.
* @throws NullPointerException If msg is {@code null}.
*/
public static Boolean isDeviceCurrentlyConnected(final Message msg) {
return Optional.ofNullable(MessageHelper.getTimeUntilDisconnect(msg)).map(ttd -> {
if (ttd == MessageHelper.TTD_VALUE_UNLIMITED) {
return Boolean.TRUE;
} else if (ttd == 0) {
return Boolean.FALSE;
} else {
final Instant creationTime = Instant.ofEpochMilli(msg.getCreationTime());
return Instant.now().isBefore(creationTime.plusSeconds(ttd));
}
}).orElse(Boolean.FALSE);
}
代码示例来源:origin: org.apache.beam/beam-sdks-java-io-amqp
@Override
public boolean advance() {
messenger.recv();
if (messenger.incoming() <= 0) {
current = null;
return false;
}
Message message = messenger.get();
Tracker tracker = messenger.incomingTracker();
checkpointMark.trackers.add(tracker);
currentTimestamp = new Instant(message.getCreationTime());
watermark = currentTimestamp;
current = message;
return true;
}
代码示例来源:origin: org.eclipse.hono/hono-core
/**
* Provide an instance of {@link TimeUntilDisconnectNotification} if a message indicates that the device sending it
* is currently connected to a protocol adapter.
* <p>
* If this is not the case, the returned {@link Optional} will be empty.
*
* @param msg Message that is evaluated.
* @return Optional containing an instance of the class {@link TimeUntilDisconnectNotification} if the device is considered
* being ready to receive an upstream message or is empty otherwise.
* @throws NullPointerException If msg is {@code null}.
*/
public static Optional<TimeUntilDisconnectNotification> fromMessage(final Message msg) {
final Integer ttd = MessageHelper.getTimeUntilDisconnect(msg);
if (ttd == null) {
return Optional.empty();
} else if (ttd == 0 || MessageHelper.isDeviceCurrentlyConnected(msg)) {
final String tenantId = MessageHelper.getTenantIdAnnotation(msg);
final String deviceId = MessageHelper.getDeviceId(msg);
if (tenantId != null && deviceId != null) {
final Instant creationTime = Instant.ofEpochMilli(msg.getCreationTime());
final TimeUntilDisconnectNotification notification =
new TimeUntilDisconnectNotification(tenantId, deviceId, ttd,
getReadyUntilInstantFromTtd(ttd, creationTime), creationTime);
return Optional.of(notification);
}
}
return Optional.empty();
}
代码示例来源:origin: eclipse/hono
/**
* Provide an instance of {@link TimeUntilDisconnectNotification} if a message indicates that the device sending it
* is currently connected to a protocol adapter.
* <p>
* If this is not the case, the returned {@link Optional} will be empty.
*
* @param msg Message that is evaluated.
* @return Optional containing an instance of the class {@link TimeUntilDisconnectNotification} if the device is considered
* being ready to receive an upstream message or is empty otherwise.
* @throws NullPointerException If msg is {@code null}.
*/
public static Optional<TimeUntilDisconnectNotification> fromMessage(final Message msg) {
final Integer ttd = MessageHelper.getTimeUntilDisconnect(msg);
if (ttd == null) {
return Optional.empty();
} else if (ttd == 0 || MessageHelper.isDeviceCurrentlyConnected(msg)) {
final String tenantId = MessageHelper.getTenantIdAnnotation(msg);
final String deviceId = MessageHelper.getDeviceId(msg);
if (tenantId != null && deviceId != null) {
final Instant creationTime = Instant.ofEpochMilli(msg.getCreationTime());
final TimeUntilDisconnectNotification notification =
new TimeUntilDisconnectNotification(tenantId, deviceId, ttd,
getReadyUntilInstantFromTtd(ttd, creationTime), creationTime);
return Optional.of(notification);
}
}
return Optional.empty();
}
代码示例来源:origin: Azure/azure-event-hubs-java
receiveProperties.put(AmqpConstants.AMQP_PROPERTY_ABSOLUTE_EXPRITY_TIME, amqpMessage.getExpiryTime());
if (amqpMessage.getProperties().getCreationTime() != null)
receiveProperties.put(AmqpConstants.AMQP_PROPERTY_CREATION_TIME, amqpMessage.getCreationTime());
if (amqpMessage.getGroupId() != null)
receiveProperties.put(AmqpConstants.AMQP_PROPERTY_GROUP_ID, amqpMessage.getGroupId());
内容来源于网络,如有侵权,请联系作者删除!