ActiveMQ 安装及使用过程

1.安装jdk

在CentOS操作系统中,可以下载rpm包直接安装。

[root@m161p114 ~]# lsb_release -a
LSB Version:	:core-4.1-amd64:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-4.1-amd64:desktop-4.1-noarch:languages-4.1-amd64:languages-4.1-noarch:printing-4.1-amd64:printing-4.1-noarch
Distributor ID:	CentOS
Description:	CentOS Linux release 7.9.2009 (Core)
Release:	7.9.2009
Codename:	Core
[root@m161p114 ~]# 

现在下载jdk的rpm包。
jdk-8u311-linux-x64.rpm

直接安装即可:

[root@m161p114 software]# rpm -ivh jdk-8u311-linux-x64.rpm 
warning: jdk-8u311-linux-x64.rpm: Header V3 RSA/SHA256 Signature, key ID ec551f03: NOKEY
Preparing...                          ################################# [100%]
Updating / installing...
   1:jdk1.8-2000:1.8.0_311-fcs        ################################# [100%]
Unpacking JAR files...
	tools.jar...
	plugin.jar...
	javaws.jar...
	deploy.jar...
	rt.jar...
	jsse.jar...
	charsets.jar...
	localedata.jar...
[root@m161p114 software]# 

如果需要使用到多个版本的jdk,那么不建议通过rpm的方式来安装,最好安装tar.gz版本,然后在环境变量中配置。

2.active 安装及启动

activeMQ的安装非常简单,在安装好jdk之后,只需要将activeMQ的压缩包上传解压即可。
从apache下载最新的activeMQ。
apache-activemq-5.16.3-bin.tar.gz
activeMQ有两个分支,我们在此选择了传统的分支。

[root@m161p114 opt]# tar -zxvf /opt/software/apache-activemq-5.16.3-bin.tar.gz 
apache-activemq-5.16.3/
apache-activemq-5.16.3/lib/
apache-activemq-5.16.3/docs/
apache-activemq-5.16.3/examples/
apache-activemq-5.16.3/examples/openwire/
apache-activemq-5.16.3/examples/openwire/csharp/
apache-activemq-5.16.3/examples/openwire/csharp/ActiveMQExamples/
apache-activemq-5.16.3/examples/openwire/csharp/ActiveMQExamples/Listener/
apache-activemq-5.16.3/examples/openwire/csharp/ActiveMQExamples/Publisher/
apache-activemq-5.16.3/examples/openwire/advanced-scenarios/

... ...

解压之后就可以通过如下方式启动:

[root@m161p114 apache-activemq-5.16.3]# bin/activemq start
INFO: Loading '/opt/apache-activemq-5.16.3//bin/env'
INFO: Using java '/bin/java'
INFO: Starting - inspect logfiles specified in logging.properties and log4j.properties to get details
INFO: pidfile created : '/opt/apache-activemq-5.16.3//data/activemq.pid' (pid '14540')
[root@m161p114 apache-activemq-5.16.3]# bin/activemq status
INFO: Loading '/opt/apache-activemq-5.16.3//bin/env'
INFO: Using java '/bin/java'
ActiveMQ is running (pid '14540')
[root@m161p114 apache-activemq-5.16.3]# 

这样activeMQ启动成功。

activeMQ的管理后台在jetty中进行配置,默认端口为8161。不过需要注意的是,activeMQ的管理后台监听为127.0.0.1。需要配置为0.0.0.0.
该配置为于jetty.xml中。这个host需要改为0.0.0.0。


    <bean id="jettyPort" class="org.apache.activemq.web.WebConsolePort" init-method="start">
             <!-- the default port number for the web console -->
        <property name="host" value="0.0.0.0"/>
        <property name="port" value="8161"/>
    </bean>

之后重启activeMQ:

[root@m161p114 apache-activemq-5.16.3]# bin/activemq restart
INFO: Loading '/opt/apache-activemq-5.16.3//bin/env'
INFO: Using java '/bin/java'
INFO: Loading '/opt/apache-activemq-5.16.3//bin/env'
INFO: Using java '/bin/java'
INFO: Waiting at least 30 seconds for regular process termination of pid '14540' : 
Java Runtime: Oracle Corporation 1.8.0_311 /usr/java/jdk1.8.0_311-amd64/jre
  Heap sizes: current=62976k  free=61992k  max=932352k
    JVM args: -Xms64M -Xmx1G -Djava.util.logging.config.file=logging.properties -Djava.security.auth.login.config=/opt/apache-activemq-5.16.3//conf/login.config -Dactivemq.classpath=/opt/apache-activemq-5.16.3//conf:/opt/apache-activemq-5.16.3//../lib/: -Dactivemq.home=/opt/apache-activemq-5.16.3/ -Dactivemq.base=/opt/apache-activemq-5.16.3/ -Dactivemq.conf=/opt/apache-activemq-5.16.3//conf -Dactivemq.data=/opt/apache-activemq-5.16.3//data
Extensions classpath:
  [/opt/apache-activemq-5.16.3/lib,/opt/apache-activemq-5.16.3/lib/camel,/opt/apache-activemq-5.16.3/lib/optional,/opt/apache-activemq-5.16.3/lib/web,/opt/apache-activemq-5.16.3/lib/extra]
ACTIVEMQ_HOME: /opt/apache-activemq-5.16.3

通过http://192.168.161.114:8161/ 就能访问activeMQ的管理界面。

管理界面需要用户和密码,位于 jetty-realm.properties文件中:

# Defines users that can access the web (console, demo, etc.)
# username: password [,rolename ...]
admin: admin, admin
user: user, user

可以通过admin和user用户登陆访问。

3.java客户端

现在可以通过java代码进行连接测试。
需要导入的包有:

 <!-- activeMQ -->
        <dependency>
            <groupId>org.apache.activemq</groupId>
            <artifactId>activemq-all</artifactId>
            <version>5.16.3</version>
        </dependency>

这样就导入了activeMQ的依赖的包,现在通过如下代码可以对activeMQ进行操作。

package com.dhb.activemq.demo;

import lombok.extern.slf4j.Slf4j;
import org.apache.activemq.ActiveMQConnection;
import org.apache.activemq.ActiveMQConnectionFactory;
import org.apache.activemq.command.ActiveMQTopic;

import javax.jms.Destination;
import javax.jms.Message;
import javax.jms.MessageConsumer;
import javax.jms.MessageListener;
import javax.jms.MessageProducer;
import javax.jms.Session;
import javax.jms.TextMessage;
import java.util.concurrent.atomic.AtomicInteger;


@Slf4j
public class ActiveMQTest {

	public static void main(String[] args) {
		Destination destination = new ActiveMQTopic("test.topic");
		testDestination(destination);
	}
	
	public static void testDestination(Destination destination) {
		try {
			ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("tcp://192.168.161.114:61616");
			ActiveMQConnection conn = (ActiveMQConnection) factory.createConnection();
			conn.start();
			Session session = conn.createSession(false, Session.AUTO_ACKNOWLEDGE);

			// 创建消费者
			MessageConsumer consumer = session.createConsumer( destination );
			final AtomicInteger count = new AtomicInteger(0);
			MessageListener listener = new MessageListener() {
				@Override
				public void onMessage(Message message) {
					try {
						// 打印所有的消息内容
						// Thread.sleep();
						log.info(count.incrementAndGet() + " => receive from " + destination.toString() + ": " + message);
						// message.acknowledge(); // 前面所有未被确认的消息全部都确认。

					} catch (Exception e) {
						e.printStackTrace(); // 不要吞任何这里的异常,
					}
				}
			};
			// 绑定消息监听器
			consumer.setMessageListener(listener);
			
			// 创建生产者,生产100个消息
			MessageProducer producer = session.createProducer(destination);
			int index = 0;
			while (index++ < 100) {
				TextMessage message = session.createTextMessage(index + " message.");
				producer.send(message);
			}

			Thread.sleep(20000);
			session.close();
			conn.close();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}

执行上述代码,可以完成对activeMQ的相关操作:

14:40:20.562 [main] DEBUG org.apache.activemq.transport.WireFormatNegotiator - Sending: WireFormatInfo { version=12, properties={StackTraceEnabled=true, PlatformDetails=Java, CacheEnabled=true, Host=192.168.161.114, TcpNoDelayEnabled=true, SizePrefixDisabled=false, CacheSize=1024, ProviderName=ActiveMQ, TightEncodingEnabled=true, MaxFrameSize=9223372036854775807, MaxInactivityDuration=30000, MaxInactivityDurationInitalDelay=10000, ProviderVersion=5.16.3}, magic=[A,c,t,i,v,e,M,Q]}
14:40:20.630 [ActiveMQ Transport: tcp:///192.168.161.114:61616@13839] DEBUG org.apache.activemq.transport.InactivityMonitor - Using min of local: WireFormatInfo { version=12, properties={StackTraceEnabled=true, PlatformDetails=Java, CacheEnabled=true, Host=192.168.161.114, TcpNoDelayEnabled=true, SizePrefixDisabled=false, CacheSize=1024, ProviderName=ActiveMQ, TightEncodingEnabled=true, MaxFrameSize=9223372036854775807, MaxInactivityDuration=30000, MaxInactivityDurationInitalDelay=10000, ProviderVersion=5.16.3}, magic=[A,c,t,i,v,e,M,Q]} and remote: WireFormatInfo { version=12, properties={TcpNoDelayEnabled=true, SizePrefixDisabled=false, CacheSize=1024, ProviderName=ActiveMQ, StackTraceEnabled=true, PlatformDetails=Java, CacheEnabled=true, TightEncodingEnabled=true, MaxFrameSize=104857600, MaxInactivityDuration=30000, MaxInactivityDurationInitalDelay=10000, ProviderVersion=5.16.3}, magic=[A,c,t,i,v,e,M,Q]}
14:40:20.630 [ActiveMQ Transport: tcp:///192.168.161.114:61616@13839] DEBUG org.apache.activemq.transport.WireFormatNegotiator - Received WireFormat: WireFormatInfo { version=12, properties={TcpNoDelayEnabled=true, SizePrefixDisabled=false, CacheSize=1024, ProviderName=ActiveMQ, StackTraceEnabled=true, PlatformDetails=Java, CacheEnabled=true, TightEncodingEnabled=true, MaxFrameSize=104857600, MaxInactivityDuration=30000, MaxInactivityDurationInitalDelay=10000, ProviderVersion=5.16.3}, magic=[A,c,t,i,v,e,M,Q]}
14:40:20.630 [ActiveMQ Transport: tcp:///192.168.161.114:61616@13839] DEBUG org.apache.activemq.transport.WireFormatNegotiator - tcp:///192.168.161.114:61616@13839 before negotiation: OpenWireFormat{version=12, cacheEnabled=false, stackTraceEnabled=false, tightEncodingEnabled=false, sizePrefixDisabled=false, maxFrameSize=9223372036854775807}
14:40:20.631 [ActiveMQ Transport: tcp:///192.168.161.114:61616@13839] DEBUG org.apache.activemq.transport.WireFormatNegotiator - tcp:///192.168.161.114:61616@13839 after negotiation: OpenWireFormat{version=12, cacheEnabled=true, stackTraceEnabled=true, tightEncodingEnabled=true, sizePrefixDisabled=false, maxFrameSize=104857600}
14:40:20.737 [main] DEBUG org.apache.activemq.thread.TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Session Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@50c87b21[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0]
14:40:20.768 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 1 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 6, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:1, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220755, arrival = 0, brokerInTime = 1635403221068, brokerOutTime = 1635403221072, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@ace8803, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 1 message.}
14:40:20.770 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 2 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 7, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:2, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220762, arrival = 0, brokerInTime = 1635403221074, brokerOutTime = 1635403221074, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4c5ba5a9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 2 message.}
14:40:20.770 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 3 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 8, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:3, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220765, arrival = 0, brokerInTime = 1635403221076, brokerOutTime = 1635403221076, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@322bb2b1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 3 message.}
14:40:20.771 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 4 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 9, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:4, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220766, arrival = 0, brokerInTime = 1635403221077, brokerOutTime = 1635403221077, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@36111dfb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 4 message.}
14:40:20.771 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 5 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 10, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:5, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220767, arrival = 0, brokerInTime = 1635403221078, brokerOutTime = 1635403221078, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@32c3ed46, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 5 message.}
14:40:20.772 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 6 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 11, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:6, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220768, arrival = 0, brokerInTime = 1635403221079, brokerOutTime = 1635403221079, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2324705a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 6 message.}
14:40:20.773 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 7 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 12, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:7, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220768, arrival = 0, brokerInTime = 1635403221080, brokerOutTime = 1635403221080, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4c75e0b5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 7 message.}
14:40:20.773 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 8 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 17, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:8, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220771, arrival = 0, brokerInTime = 1635403221083, brokerOutTime = 1635403221083, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7235d205, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 8 message.}
14:40:20.776 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 9 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 21, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:9, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220773, arrival = 0, brokerInTime = 1635403221084, brokerOutTime = 1635403221084, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3d8cfab9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 9 message.}
14:40:20.776 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 10 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 23, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:10, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220774, arrival = 0, brokerInTime = 1635403221086, brokerOutTime = 1635403221086, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@334b1378, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 10 message.}
14:40:20.777 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 11 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 24, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:11, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220775, arrival = 0, brokerInTime = 1635403221087, brokerOutTime = 1635403221087, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@377491c9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 11 message.}
14:40:20.777 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 12 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 26, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:12, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220776, arrival = 0, brokerInTime = 1635403221088, brokerOutTime = 1635403221088, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5f97a5d4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 12 message.}
14:40:20.778 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 13 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 29, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:13, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220777, arrival = 0, brokerInTime = 1635403221088, brokerOutTime = 1635403221088, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3c0496db, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 13 message.}
14:40:20.780 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 14 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 31, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:14, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220778, arrival = 0, brokerInTime = 1635403221089, brokerOutTime = 1635403221090, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@60fddea4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 14 message.}
14:40:20.780 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 15 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 33, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:15, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220779, arrival = 0, brokerInTime = 1635403221090, brokerOutTime = 1635403221090, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@32d8cd1b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 15 message.}
14:40:20.781 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 16 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 34, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:16, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220780, arrival = 0, brokerInTime = 1635403221091, brokerOutTime = 1635403221091, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@72761943, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 16 message.}
14:40:20.782 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 17 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 37, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:17, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220781, arrival = 0, brokerInTime = 1635403221092, brokerOutTime = 1635403221092, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@28f57c86, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 17 message.}
14:40:20.783 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 18 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 39, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:18, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220782, arrival = 0, brokerInTime = 1635403221093, brokerOutTime = 1635403221093, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@434e6a33, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 18 message.}
14:40:20.786 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 19 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 41, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:19, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220783, arrival = 0, brokerInTime = 1635403221094, brokerOutTime = 1635403221096, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5027514a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 19 message.}
14:40:20.787 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 20 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 43, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:20, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220784, arrival = 0, brokerInTime = 1635403221095, brokerOutTime = 1635403221097, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1259e60c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 20 message.}
14:40:20.787 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 21 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 44, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:21, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220785, arrival = 0, brokerInTime = 1635403221096, brokerOutTime = 1635403221097, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@114ba98d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 21 message.}
14:40:20.788 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 22 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 45, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:22, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220785, arrival = 0, brokerInTime = 1635403221097, brokerOutTime = 1635403221097, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@21e45665, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 22 message.}
14:40:20.788 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 23 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 47, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:23, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220786, arrival = 0, brokerInTime = 1635403221098, brokerOutTime = 1635403221098, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4b23fe12, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 23 message.}
14:40:20.788 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 24 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 49, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:24, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220787, arrival = 0, brokerInTime = 1635403221099, brokerOutTime = 1635403221099, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@50836791, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 24 message.}
14:40:20.797 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 25 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 53, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:25, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220788, arrival = 0, brokerInTime = 1635403221100, brokerOutTime = 1635403221100, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@48a99114, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 25 message.}
14:40:20.800 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 26 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 55, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:26, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220797, arrival = 0, brokerInTime = 1635403221109, brokerOutTime = 1635403221109, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@46af7e5b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 26 message.}
14:40:20.802 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 27 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 57, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:27, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220800, arrival = 0, brokerInTime = 1635403221112, brokerOutTime = 1635403221112, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@326bc380, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 27 message.}
14:40:20.803 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 28 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 59, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:28, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220802, arrival = 0, brokerInTime = 1635403221114, brokerOutTime = 1635403221114, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@799f85b3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 28 message.}
14:40:20.805 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 29 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 61, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:29, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220802, arrival = 0, brokerInTime = 1635403221115, brokerOutTime = 1635403221115, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7d3a8aa5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 29 message.}
14:40:20.806 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 30 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 63, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:30, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220804, arrival = 0, brokerInTime = 1635403221117, brokerOutTime = 1635403221117, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@40da7eff, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 30 message.}
14:40:20.809 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 31 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 64, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:31, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220805, arrival = 0, brokerInTime = 1635403221117, brokerOutTime = 1635403221118, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2c41d2a7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 31 message.}
14:40:20.810 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 32 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 67, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:32, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220809, arrival = 0, brokerInTime = 1635403221121, brokerOutTime = 1635403221121, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@29f67881, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 32 message.}
14:40:20.811 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 33 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 69, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:33, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220810, arrival = 0, brokerInTime = 1635403221122, brokerOutTime = 1635403221122, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@30b0b8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 33 message.}
14:40:20.812 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 34 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 71, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:34, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220811, arrival = 0, brokerInTime = 1635403221123, brokerOutTime = 1635403221123, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@130e0bc7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 34 message.}
14:40:20.813 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 35 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 73, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:35, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220812, arrival = 0, brokerInTime = 1635403221124, brokerOutTime = 1635403221124, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@31f827eb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 35 message.}
14:40:20.815 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 36 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 76, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:36, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220814, arrival = 0, brokerInTime = 1635403221126, brokerOutTime = 1635403221126, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2b507325, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 36 message.}
14:40:20.816 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 37 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 77, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:37, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220815, arrival = 0, brokerInTime = 1635403221127, brokerOutTime = 1635403221127, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@2ee0b387, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 37 message.}
14:40:20.818 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 38 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 79, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:38, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220816, arrival = 0, brokerInTime = 1635403221128, brokerOutTime = 1635403221128, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4d53d5af, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 38 message.}
14:40:20.819 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 39 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 81, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:39, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220818, arrival = 0, brokerInTime = 1635403221130, brokerOutTime = 1635403221130, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3de47491, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 39 message.}
14:40:20.820 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 40 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 83, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:40, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220819, arrival = 0, brokerInTime = 1635403221131, brokerOutTime = 1635403221131, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1585f153, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 40 message.}
14:40:20.821 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 41 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 85, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:41, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220820, arrival = 0, brokerInTime = 1635403221132, brokerOutTime = 1635403221132, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3ed204ef, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 41 message.}
14:40:20.822 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 42 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 87, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:42, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220821, arrival = 0, brokerInTime = 1635403221133, brokerOutTime = 1635403221133, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6d7f5037, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 42 message.}
14:40:20.824 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 43 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 89, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:43, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220822, arrival = 0, brokerInTime = 1635403221134, brokerOutTime = 1635403221134, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@73a1e1f5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 43 message.}
14:40:20.825 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 44 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 91, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:44, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220823, arrival = 0, brokerInTime = 1635403221136, brokerOutTime = 1635403221136, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@499499bb, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 44 message.}
14:40:20.826 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 45 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 93, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:45, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220825, arrival = 0, brokerInTime = 1635403221137, brokerOutTime = 1635403221137, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@67cf091a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 45 message.}
14:40:20.828 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 46 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 95, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:46, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220826, arrival = 0, brokerInTime = 1635403221138, brokerOutTime = 1635403221138, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@70a6133c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 46 message.}
14:40:20.828 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 47 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 97, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:47, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220827, arrival = 0, brokerInTime = 1635403221139, brokerOutTime = 1635403221139, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@cf4ea94, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 47 message.}
14:40:20.829 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 48 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 98, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:48, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220828, arrival = 0, brokerInTime = 1635403221140, brokerOutTime = 1635403221140, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@161718fc, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 48 message.}
14:40:20.829 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 49 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 101, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:49, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220829, arrival = 0, brokerInTime = 1635403221141, brokerOutTime = 1635403221141, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5adcdc72, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 49 message.}
14:40:20.831 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 50 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 103, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:50, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220830, arrival = 0, brokerInTime = 1635403221142, brokerOutTime = 1635403221142, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5988ee32, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 50 message.}
14:40:20.832 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 51 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 105, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:51, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220831, arrival = 0, brokerInTime = 1635403221143, brokerOutTime = 1635403221143, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@d0f487f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 51 message.}
14:40:20.833 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 52 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 107, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:52, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220832, arrival = 0, brokerInTime = 1635403221144, brokerOutTime = 1635403221144, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@237171da, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 52 message.}
14:40:20.835 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 53 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 109, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:53, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220833, arrival = 0, brokerInTime = 1635403221145, brokerOutTime = 1635403221146, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1f72068a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 53 message.}
14:40:20.835 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 54 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 111, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:54, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220834, arrival = 0, brokerInTime = 1635403221146, brokerOutTime = 1635403221146, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1158228, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 54 message.}
14:40:20.836 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 55 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 112, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:55, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220835, arrival = 0, brokerInTime = 1635403221147, brokerOutTime = 1635403221147, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@61c0f3f0, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 55 message.}
14:40:20.837 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 56 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 115, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:56, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220836, arrival = 0, brokerInTime = 1635403221148, brokerOutTime = 1635403221148, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7e58a10b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 56 message.}
14:40:20.839 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 57 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 117, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:57, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220837, arrival = 0, brokerInTime = 1635403221149, brokerOutTime = 1635403221149, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3ea7620f, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 57 message.}
14:40:20.841 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 58 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 119, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:58, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220839, arrival = 0, brokerInTime = 1635403221151, brokerOutTime = 1635403221151, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@15ac9f05, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 58 message.}
14:40:20.843 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 59 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 121, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:59, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220841, arrival = 0, brokerInTime = 1635403221153, brokerOutTime = 1635403221153, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7395b133, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 59 message.}
14:40:20.844 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 60 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 123, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:60, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220843, arrival = 0, brokerInTime = 1635403221155, brokerOutTime = 1635403221155, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@487e16b3, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 60 message.}
14:40:20.845 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 61 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 125, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:61, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220844, arrival = 0, brokerInTime = 1635403221156, brokerOutTime = 1635403221156, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4d4ca2a9, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 61 message.}
14:40:20.846 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 62 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 127, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:62, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220844, arrival = 0, brokerInTime = 1635403221156, brokerOutTime = 1635403221157, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3c6948b2, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 62 message.}
14:40:20.847 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 63 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 129, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:63, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220846, arrival = 0, brokerInTime = 1635403221158, brokerOutTime = 1635403221158, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@62ab7a25, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 63 message.}
14:40:20.848 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 64 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 131, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:64, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220847, arrival = 0, brokerInTime = 1635403221159, brokerOutTime = 1635403221159, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5a58234d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 64 message.}
14:40:20.854 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 65 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 133, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:65, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220848, arrival = 0, brokerInTime = 1635403221160, brokerOutTime = 1635403221160, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@72298b45, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 65 message.}
14:40:20.859 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 66 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 135, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:66, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220854, arrival = 0, brokerInTime = 1635403221166, brokerOutTime = 1635403221166, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@473616a, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 66 message.}
14:40:20.863 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 67 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 137, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:67, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220859, arrival = 0, brokerInTime = 1635403221171, brokerOutTime = 1635403221171, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3db05993, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 67 message.}
14:40:20.865 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 68 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 139, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:68, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220862, arrival = 0, brokerInTime = 1635403221175, brokerOutTime = 1635403221175, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@26e95723, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 68 message.}
14:40:20.867 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 69 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 141, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:69, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220865, arrival = 0, brokerInTime = 1635403221177, brokerOutTime = 1635403221177, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@18248318, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 69 message.}
14:40:20.873 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 70 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 143, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:70, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220867, arrival = 0, brokerInTime = 1635403221179, brokerOutTime = 1635403221179, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@743d947, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 70 message.}
14:40:20.874 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 71 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 145, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:71, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220873, arrival = 0, brokerInTime = 1635403221185, brokerOutTime = 1635403221185, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@388074fd, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 71 message.}
14:40:20.875 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 72 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 147, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:72, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220874, arrival = 0, brokerInTime = 1635403221186, brokerOutTime = 1635403221186, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@54bc6c81, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 72 message.}
14:40:20.876 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 73 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 149, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:73, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220875, arrival = 0, brokerInTime = 1635403221187, brokerOutTime = 1635403221187, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@683c194d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 73 message.}
14:40:20.877 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 74 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 151, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:74, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220876, arrival = 0, brokerInTime = 1635403221188, brokerOutTime = 1635403221188, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@712c6cec, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 74 message.}
14:40:20.878 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 75 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 153, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:75, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220877, arrival = 0, brokerInTime = 1635403221188, brokerOutTime = 1635403221188, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@4a30d9a8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 75 message.}
14:40:20.878 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 76 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 154, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:76, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220877, arrival = 0, brokerInTime = 1635403221189, brokerOutTime = 1635403221189, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7d5f6c0b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 76 message.}
14:40:20.879 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 77 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 157, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:77, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220878, arrival = 0, brokerInTime = 1635403221190, brokerOutTime = 1635403221190, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@75a1f49c, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 77 message.}
14:40:20.880 [ActiveMQ Session Task-1] INFO com.dhb.activemq.demo.ActiveMQTest - 78 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 159, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:78, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220879, arrival = 0, brokerInTime = 1635403221190, brokerOutTime = 1635403221190, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@67f8adc8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 78 message.}
14:40:20.880 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 79 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 160, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:79, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220879, arrival = 0, brokerInTime = 1635403221191, brokerOutTime = 1635403221191, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@76ae6ec5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 79 message.}
14:40:20.881 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 80 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 163, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:80, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220880, arrival = 0, brokerInTime = 1635403221192, brokerOutTime = 1635403221192, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5ef93e6b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 80 message.}
14:40:20.881 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 81 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 165, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:81, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220881, arrival = 0, brokerInTime = 1635403221192, brokerOutTime = 1635403221192, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@51303568, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 81 message.}
14:40:20.882 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 82 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 167, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:82, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220881, arrival = 0, brokerInTime = 1635403221193, brokerOutTime = 1635403221193, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7c19f9a4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 82 message.}
14:40:20.883 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 83 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 169, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:83, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220882, arrival = 0, brokerInTime = 1635403221193, brokerOutTime = 1635403221193, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@79c468a4, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 83 message.}
14:40:20.885 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 84 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 171, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:84, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220883, arrival = 0, brokerInTime = 1635403221195, brokerOutTime = 1635403221195, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@6ed90b91, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 84 message.}
14:40:20.885 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 85 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 173, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:85, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220884, arrival = 0, brokerInTime = 1635403221196, brokerOutTime = 1635403221196, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3e92e857, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 85 message.}
14:40:20.887 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 86 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 176, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:86, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220886, arrival = 0, brokerInTime = 1635403221197, brokerOutTime = 1635403221197, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@df5f2f8, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 86 message.}
14:40:20.888 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 87 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 177, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:87, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220887, arrival = 0, brokerInTime = 1635403221198, brokerOutTime = 1635403221198, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@572e3aaa, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 87 message.}
14:40:20.890 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 88 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 179, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:88, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220888, arrival = 0, brokerInTime = 1635403221201, brokerOutTime = 1635403221201, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@710d365d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 88 message.}
14:40:20.892 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 89 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 181, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:89, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220891, arrival = 0, brokerInTime = 1635403221202, brokerOutTime = 1635403221202, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@58f4a87b, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 89 message.}
14:40:20.893 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 90 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 183, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:90, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220892, arrival = 0, brokerInTime = 1635403221203, brokerOutTime = 1635403221203, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@7a34e3af, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 90 message.}
14:40:20.894 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 91 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 185, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:91, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220893, arrival = 0, brokerInTime = 1635403221204, brokerOutTime = 1635403221204, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@5ce97d29, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 91 message.}
14:40:20.895 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 92 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 187, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:92, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220894, arrival = 0, brokerInTime = 1635403221205, brokerOutTime = 1635403221205, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@44ce1737, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 92 message.}
14:40:20.896 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 93 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 189, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:93, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220895, arrival = 0, brokerInTime = 1635403221206, brokerOutTime = 1635403221206, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3904c8a5, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 93 message.}
14:40:20.897 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 94 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 191, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:94, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220896, arrival = 0, brokerInTime = 1635403221208, brokerOutTime = 1635403221208, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@64f06db1, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 94 message.}
14:40:20.898 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 95 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 193, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:95, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220897, arrival = 0, brokerInTime = 1635403221209, brokerOutTime = 1635403221209, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@73e75433, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 95 message.}
14:40:20.899 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 96 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 195, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:96, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220898, arrival = 0, brokerInTime = 1635403221209, brokerOutTime = 1635403221209, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@472482d7, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 96 message.}
14:40:20.901 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 97 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 197, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:97, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220899, arrival = 0, brokerInTime = 1635403221210, brokerOutTime = 1635403221210, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@58fa3b76, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 97 message.}
14:40:20.902 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 98 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 199, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:98, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220901, arrival = 0, brokerInTime = 1635403221213, brokerOutTime = 1635403221213, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@3f80483d, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 98 message.}
14:40:20.903 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 99 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 201, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:99, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220902, arrival = 0, brokerInTime = 1635403221213, brokerOutTime = 1635403221213, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@768fd532, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 99 message.}
14:40:20.904 [ActiveMQ Session Task-2] INFO com.dhb.activemq.demo.ActiveMQTest - 100 => receive from topic://test.topic: ActiveMQTextMessage {commandId = 203, responseRequired = true, messageId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1:100, originalDestination = null, originalTransactionId = null, producerId = ID:DESKTOP-HR38DGU-13838-1635403220454-1:1:1:1, destination = topic://test.topic, transactionId = null, expiration = 0, timestamp = 1635403220903, arrival = 0, brokerInTime = 1635403221214, brokerOutTime = 1635403221214, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@155ec30e, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = true, readOnlyBody = true, droppable = false, jmsXGroupFirstForConsumer = false, text = 100 message.}
14:40:40.631 [ActiveMQ InactivityMonitor WriteCheckTimer] DEBUG org.apache.activemq.transport.AbstractInactivityMonitor - WriteChecker: 10000ms elapsed since last write check.
14:40:40.634 [ActiveMQ InactivityMonitor Worker] DEBUG org.apache.activemq.transport.AbstractInactivityMonitor - Running WriteCheck[tcp://192.168.161.114:61616]
14:40:40.917 [main] DEBUG org.apache.activemq.util.ThreadPoolUtils - Shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@50c87b21[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 92] is shutdown: true and terminated: false took: 0.000 seconds.
14:40:40.922 [main] DEBUG org.apache.activemq.util.ThreadPoolUtils - Shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@4c70fda8[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] is shutdown: true and terminated: true took: 0.001 seconds.
14:40:40.922 [ActiveMQ Transport: tcp:///192.168.161.114:61616@13839] DEBUG org.apache.activemq.util.ThreadPoolUtils - Shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@37fa96b8[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 1] is shutdown: true and terminated: true took: 0.001 seconds.
14:40:40.924 [main] DEBUG org.apache.activemq.transport.tcp.TcpTransport - Stopping transport tcp:///192.168.161.114:61616@13839
14:40:40.925 [main] DEBUG org.apache.activemq.thread.TaskRunnerFactory - Initialized TaskRunnerFactory[ActiveMQ Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@59fa1d9b[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0]
14:40:40.926 [ActiveMQ Task-1] DEBUG org.apache.activemq.transport.tcp.TcpTransport - Closed socket Socket[addr=/192.168.161.114,port=61616,localport=13839]
14:40:40.927 [main] DEBUG org.apache.activemq.util.ThreadPoolUtils - Forcing shutdown of ExecutorService: java.util.concurrent.ThreadPoolExecutor@59fa1d9b[Running, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 1]
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值