vert-x3 / vertx-amqp-client

An AMQP client for Vert.x
Apache License 2.0
17 stars 18 forks source link

Add unwrap methods to AmqpConnection, AmqpSender and AmqpReceiver classes #78

Closed cescoffier closed 2 years ago

cescoffier commented 2 years ago

These methods give access to the underlying Proton objects. In some cases, it is required to retrieve information on the links (sender/receiver) and open/close them. The AmqpConnection unwrap method existed already but was not exposed in the interface. This commit exposes it in the interface.

Because the returned objects are not "polyglot", it uses the @GenIgnore(PERMITTED_TYPE)