Open sposnjak-cpot opened 2 years ago
It has not been supported yet. I tried it about three years ago and reported https://github.com/oracle/odpi/issues/104. I have not restarted it yet.
I added experimental advanced queuing support. See https://www.jiubao.org/rust-oracle/oracle/aq/index.html.
It is available when aq_unstable
feature is enabled. It is unstable for the time being.
Add the following dependency in Cargo.toml
:
[dependencies]
oracle = { git = "https://github.com/kubo/rust-oracle", features = ["aq_unstable"] }
@kubo just a FYI that our AQ development team are finalizing a small ODPI-C enhancement to support AQ recipient lists, which is an option for AQ messaging.
Wow! This was quick! I will try it as soon as possible to see if it meets our requirements.
Thank you all.
I am looking to hook up the my rust app to oracle database and we use AQ for communication. I can see in the bindings that there are functions for enq/deq and also for subscriptions, but can not find any examples on how to use them or any rust struct in form of a Queue.
Is this not (yet) supported or am I missing something?