You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to be able to have a function in the client builder like inbox_prefix() that, when used, sets an alternate prefix other than _INBOX. There's no real workaround to this because the request functions use new_inbox() internally.
The text was updated successfully, but these errors were encountered:
From the documentation in a number of places, it states that NATS clients support the ability to define an inbox prefix:
But when looking at the async nats library, there is no way to generate an inbox with a prefix of anything other than
_INBOX
, which you can see here: https://docs.rs/async-nats/latest/src/async_nats/client.rs.html#193I would like to be able to have a function in the client builder like
inbox_prefix()
that, when used, sets an alternate prefix other than_INBOX
. There's no real workaround to this because the request functions usenew_inbox()
internally.The text was updated successfully, but these errors were encountered: