Skip to content

Commit

Permalink
appendTo method added to MessageDecoderFlyweight
Browse files Browse the repository at this point in the history
  • Loading branch information
ww3456 committed Sep 25, 2020
1 parent 6288c6c commit 4c244f6
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,12 @@ public interface MessageDecoderFlyweight extends MessageFlyweight, DecoderFlywei
* @return the {@link MessageDecoderFlyweight} for fluent API design.
*/
MessageDecoderFlyweight wrap(DirectBuffer buffer, int offset, int actingBlockLength, int actingVersion);

/**
* Populate the supplied StringBuilder with the string representation of the message.
*
* @param builder destination for the string
* @return the supplied builder
*/
StringBuilder appendTo(StringBuilder builder);
}

0 comments on commit 4c244f6

Please sign in to comment.