Skip to content

Commit

Permalink
Update package documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ayeshLK committed Sep 4, 2024
1 parent e68d8a8 commit 4a26977
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ballerina/destination.bal
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ public isolated client class Queue {
# ```
#
# + message - IBM MQ message
# + options - Options controlling the action of the put operation. Can be a combination of one or more `ibmmq:MQPMO_*` options
# + options - Options controlling the action of the put operation. Can be a combination of
# one or more `ibmmq:MQPMO_*` options and values can combined using either '+' or '|'
# + return - An `ibmmq:Error` if the operation fails or else `()`
isolated remote function put(Message message, int options = MQPMO_NO_SYNCPOINT) returns Error? =
@java:Method {
Expand Down Expand Up @@ -77,7 +78,8 @@ public isolated client class Topic {
#```
#
# + message - IBM MQ message
# + options - Options controlling the action of the put operation. Can be a combination of one or more `ibmmq:MQPMO_*` options
# + options - Options controlling the action of the put operation. Can be a combination of
# one or more `ibmmq:MQPMO_*` options and values can combined using either '+' or '|'
# + return - An `ibmmq:Error` if the operation fails or else `()`
isolated remote function put(Message message, int options = MQPMO_NO_SYNCPOINT) returns Error? =
@java:Method {
Expand Down

0 comments on commit 4a26977

Please sign in to comment.