Skip to content

Commit

Permalink
Update message encoding documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ayeshLK committed Sep 5, 2024
1 parent 60b124b commit 92073a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions ballerina/types.bal
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,7 @@ public type Property record {|
# + replyToQueueName - Name of reply queue
# + replyToQueueManagerName - Name of reply queue manager
# + encoding - Specifies the representation used for numeric values in the application message data.
# This can be represented using as a combination of `ibmmq:ENC_INTEGER_NORMAL`, `ibmmq:ENC_INTEGER_REVERSED`,
# `ibmmq:ENC_DECIMAL_NORMAL`, `ibmmq:ENC_DECIMAL_REVERSED`, `ibmmq:ENC_FLOAT_IEEE_NORMAL`, `ibmmq:ENC_FLOAT_IEEE_REVERSED`, and `ibmmq:ENC_FLOAT_S390`
# This can be represented using as a combination of `ibmmq:MQENC_*` options
# + characterSet - The coded character set identifier of character data in the application message data
# + accountingToken - The accounting token, which is part of the message's identity and allows the work performed as a result of the message to be properly charged
# + userId - Id of the user who originated the message
Expand Down
6 changes: 2 additions & 4 deletions docs/spec/spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -406,10 +406,8 @@ public type Message record {|
string replyToQueueName?;
# Name of reply queue manager
string replyToQueueManagerName?;
# Specifies the representation used for numeric values in the application message data. This can be represented
# using as a combination of `ibmmq:ENC_INTEGER_NORMAL`, `ibmmq:ENC_INTEGER_REVERSED`, `ibmmq:ENC_DECIMAL_NORMAL`,
# `ibmmq:ENC_DECIMAL_REVERSED`, `ibmmq:ENC_FLOAT_IEEE_NORMAL`, `ibmmq:ENC_FLOAT_IEEE_REVERSED`, and
# `ibmmq:ENC_FLOAT_S390`
# Specifies the representation used for numeric values in the application message data.
# This can be represented using as a combination of `ibmmq:MQENC_*` options
int encoding = ENC_INTEGER_NORMAL|ENC_DECIMAL_NORMAL|ENC_FLOAT_IEEE_NORMAL;
# The coded character set identifier of character data in the application message data
MESSAGE_CHARSET characterSet = CCSI_Q_MGR;
Expand Down

0 comments on commit 92073a1

Please sign in to comment.