@javatypes/amqp-client
Version:
java amqp-client types
18 lines (17 loc) • 519 B
TypeScript
declare namespace com {
namespace rabbitmq {
namespace client {
/**
* Implement this interface in order to be notified of connection unblock events.
* Prefer it over {@link BlockedListener} for a lambda-oriented syntax.
* @see BlockedListener
* @see BlockedCallback
*/
// @ts-ignore
interface UnblockedCallback {
// @ts-ignore
handle(): void
}
}
}
}