You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2017/12/19 03:09:25 UTC

[4/4] activemq-artemis git commit: This closes #1713

This closes #1713


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/de7251d5
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/de7251d5
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/de7251d5

Branch: refs/heads/master
Commit: de7251d546589c7b21575ea2c75626272d312f19
Parents: ac17071 dbe575a
Author: Clebert Suconic <cl...@apache.org>
Authored: Mon Dec 18 22:08:24 2017 -0500
Committer: Clebert Suconic <cl...@apache.org>
Committed: Mon Dec 18 22:08:24 2017 -0500

----------------------------------------------------------------------
 .../activemq/artemis/api/core/ICoreMessage.java |  27 +-
 .../artemis/core/message/impl/CoreMessage.java  |  58 ++-
 .../core/protocol/ClientPacketDecoder.java      |  16 +-
 .../protocol/core/CoreRemotingConnection.java   |  10 +-
 .../artemis/core/protocol/core/Packet.java      |   3 +-
 .../impl/ActiveMQClientProtocolManager.java     |   1 +
 .../core/impl/ActiveMQSessionContext.java       |  43 +-
 .../core/protocol/core/impl/ChannelImpl.java    |   2 +-
 .../core/protocol/core/impl/PacketDecoder.java  |   5 +-
 .../core/protocol/core/impl/PacketImpl.java     |  23 +-
 .../core/impl/RemotingConnectionImpl.java       |  18 +-
 .../impl/wireformat/SessionReceiveMessage.java  |  11 +-
 .../wireformat/SessionReceiveMessage_1X.java    |  49 ++
 .../impl/wireformat/SessionSendMessage.java     |   8 +-
 .../impl/wireformat/SessionSendMessage_1X.java  |  52 ++
 .../jms/client/ActiveMQConnectionFactory.java   |   2 +
 .../artemis/jms/client/ActiveMQDestination.java |   4 +-
 .../maven/ArtemisDependencyScanPlugin.java      |  22 +
 .../core/protocol/ServerPacketDecoder.java      |  35 +-
 .../core/ServerSessionPacketHandler.java        |  10 +-
 .../core/impl/ActiveMQPacketHandler.java        |  10 +-
 .../protocol/core/impl/CoreProtocolManager.java |   4 +-
 .../protocol/core/impl/CoreSessionCallback.java |   8 +-
 .../core/server/impl/ServerConsumerImpl.java    |   2 +-
 .../standard/send-acknowledgements-fail/pom.xml |  94 ++++
 .../send-acknowledgements-fail/readme.html      | 140 ++++++
 .../example/SendAcknowledgementsExample.java    | 151 ++++++
 .../src/main/resources/jndi.properties          |  20 +
 pom.xml                                         |   6 +
 tests/compatibility-tests/pom.xml               | 475 +++++++++++++++++++
 .../artemis/tests/compatibility/GroovyRun.java  | 118 +++++
 .../main/resources/clients/artemisClient.groovy |  31 ++
 .../main/resources/clients/hornetqClient.groovy |  33 ++
 .../main/resources/meshTest/sendMessages.groovy | 205 ++++++++
 .../sendAckTest/sendAckMessages.groovy          |  97 ++++
 .../src/main/resources/serial/serial.groovy     |  54 +++
 .../main/resources/servers/artemisServer.groovy |  60 +++
 .../main/resources/servers/hornetqServer.groovy |  54 +++
 .../artemis/tests/compatibility/MeshTest.java   |  79 +++
 .../tests/compatibility/SendAckTest.java        |  78 +++
 .../tests/compatibility/SerializationTest.java  |  76 +++
 .../tests/compatibility/VersionedBaseTest.java  | 179 +++++++
 .../tests/compatibility/package-info.java       |  23 +
 tests/pom.xml                                   |   1 +
 .../artemis/tests/util/SpawnedVMSupport.java    |  63 ++-
 45 files changed, 2356 insertions(+), 104 deletions(-)
----------------------------------------------------------------------