org.apache.activemq.artemis.api.core.Message.getGroupID()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(3.6k)|赞(0)|评价(0)|浏览(120)

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

Message.getGroupID介绍

暂无

代码示例

代码示例来源:origin: apache/activemq-artemis

public static String getStringProperty(final Message message, final String name) {
 if (MessageUtil.JMSXGROUPID.equals(name)) {
   return Objects.toString(message.getGroupID(), null);
 } else if (MessageUtil.JMSXGROUPSEQ.equals(name)) {
   return Integer.toString(message.getGroupSequence());
 } else if (MessageUtil.JMSXUSERID.equals(name)) {
   return message.getValidatedUserID();
 } else {
   return message.getStringProperty(name);
 }
}

代码示例来源:origin: apache/activemq-artemis

public static String getStringProperty(final Message message, final String name) {
 if (MessageUtil.JMSXGROUPID.equals(name)) {
   return Objects.toString(message.getGroupID(), null);
 } else if (MessageUtil.JMSXGROUPSEQ.equals(name)) {
   return Integer.toString(message.getGroupSequence());
 } else if (MessageUtil.JMSXUSERID.equals(name)) {
   return message.getValidatedUserID();
 } else {
   return message.getStringProperty(name);
 }
}

代码示例来源:origin: apache/activemq-artemis

public static String getStringProperty(final Message message, final String name) {
 if (MessageUtil.JMSXGROUPID.equals(name)) {
   return Objects.toString(message.getGroupID(), null);
 } else if (MessageUtil.JMSXGROUPSEQ.equals(name)) {
   return Integer.toString(message.getGroupSequence());
 } else if (MessageUtil.JMSXUSERID.equals(name)) {
   return message.getValidatedUserID();
 } else {
   return message.getStringProperty(name);
 }
}

代码示例来源:origin: apache/activemq-artemis

private SimpleString extractGroupID(MessageReference ref) {
 if (internalQueue) {
   return null;
 } else {
   try {
    return ref.getMessage().getGroupID();
   } catch (Throwable e) {
    ActiveMQServerLogger.LOGGER.unableToExtractGroupID(e);
    return null;
   }
 }
}

代码示例来源:origin: apache/activemq-artemis

public static Object getObjectProperty(final Message message, final String name) {
 final Object val;
 if (MessageUtil.JMSXGROUPID.equals(name)) {
   val = message.getGroupID();
 } else if (MessageUtil.JMSXGROUPSEQ.equals(name)) {
   val = message.getGroupSequence();
 } else if (MessageUtil.JMSXUSERID.equals(name)) {
   val = message.getValidatedUserID();
 } else {
   val = message.getObjectProperty(name);
 }
 if (val instanceof SimpleString) {
   return val.toString();
 }
 return val;
}

代码示例来源:origin: apache/activemq-artemis

public static Object getObjectProperty(final Message message, final String name) {
 final Object val;
 if (MessageUtil.JMSXGROUPID.equals(name)) {
   val = message.getGroupID();
 } else if (MessageUtil.JMSXGROUPSEQ.equals(name)) {
   val = message.getGroupSequence();
 } else if (MessageUtil.JMSXUSERID.equals(name)) {
   val = message.getValidatedUserID();
 } else {
   val = message.getObjectProperty(name);
 }
 if (val instanceof SimpleString) {
   return val.toString();
 }
 return val;
}

代码示例来源:origin: apache/activemq-artemis

public static Object getObjectProperty(final Message message, final String name) {
 final Object val;
 if (MessageUtil.JMSXGROUPID.equals(name)) {
   val = message.getGroupID();
 } else if (MessageUtil.JMSXGROUPSEQ.equals(name)) {
   val = message.getGroupSequence();
 } else if (MessageUtil.JMSXUSERID.equals(name)) {
   val = message.getValidatedUserID();
 } else {
   val = message.getObjectProperty(name);
 }
 if (val instanceof SimpleString) {
   return val.toString();
 }
 return val;
}

代码示例来源:origin: apache/activemq-artemis

SimpleString groupId = message.getGroupID();

代码示例来源:origin: apache/activemq-artemis

if (!active) {
  return HandleStatus.BUSY;
} else if (reference.getMessage().getGroupID() != null) {

代码示例来源:origin: apache/activemq-artemis

return msg.getAddress();
} else if (FilterConstants.ACTIVEMQ_GROUP_ID.equals(fieldName)) {
  return msg.getGroupID();
} else {
  return null;

相关文章

微信公众号

最新文章

更多