franz1981 edited a comment on issue #3044: ARTEMIS-2676 
PageCursorProviderImpl::cleanup can save decoding pages without large messages
URL: https://github.com/apache/activemq-artemis/pull/3044#issuecomment-607084834
 
 
   @clebertsuconic I see on `PagedMessageImpl` this check:
   ```java
      public boolean isLargeMessage() {
         return message instanceof ICoreMessage && 
((ICoreMessage)message).isLargeMessage();
      }
   ```
   and 
   ```java
      @Override
      public void encode(final ActiveMQBuffer buffer) {
         buffer.writeLong(transactionID);
   
         boolean isLargeMessage = isLargeMessage();
   
         buffer.writeBoolean(isLargeMessage);
   ```
   why we cannot fix check/encode/decode to correctly write the 
`isLargeMessage` prefix field in an OO way without doing it ad-hoc if is Core 
as it is now?
   The only part to take care is to warn users to not upgrade the broker if 
there are paged large messages (with AMQP).

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to