Mailbox put method without using put

how to put a data into mailbox without using put method

In reply to Pradeepdab:

Your only options are put() and try_put() one item at a time.

In reply to Pradeepdab:

how to put a data into mailbox without using put method

in case of blocking method method use put method to put the data into mailbox.

in case of non_blocking method method use try_put method to put the data into mailbox.

apart from above two no other method to put the data into mailbox as per our knowledge.