Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@highoutput/amqp

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@highoutput/amqp - npm Package Compare versions

Comparing version 0.5.2 to 0.5.3

1

build/lib/client.d.ts

@@ -22,2 +22,3 @@ /// <reference types="node" />

private disconnected;
private receiverQueueAddress;
constructor(connection: Connection, queue: string, options?: Partial<ClientOptions>);

@@ -24,0 +25,0 @@ send(...args: TInput): Promise<TOutput | null>;

10

build/lib/client.js

@@ -37,2 +37,3 @@ "use strict";

});
this.receiverQueueAddress = `temp-queue://${this.queue}/${this.id}`;
}

@@ -60,3 +61,3 @@ async send(...args) {

this.sender.send({
reply_to: this.receiver.source.address,
reply_to: this.receiverQueueAddress,
correlation_id: correlationId,

@@ -107,8 +108,3 @@ body,

}),
util_1.openReceiver(this.connection, {
source: {
address: `temp-queue://${this.queue}/${this.id}`,
dynamic: true,
},
}),
util_1.openReceiver(this.connection, this.receiverQueueAddress),
]);

@@ -115,0 +111,0 @@ this.sender = sender;

import { Receiver, Sender, Connection, ReceiverOptions, SenderOptions } from 'rhea';
export declare function openReceiver(connection: Connection, options: ReceiverOptions): Promise<Receiver>;
export declare function openReceiver(connection: Connection, options: ReceiverOptions | string): Promise<Receiver>;
export declare function closeReceiver(receiver: Receiver): Promise<void>;

@@ -4,0 +4,0 @@ export declare function openSender(connection: Connection, options: SenderOptions): Promise<Sender>;

{
"name": "@highoutput/amqp",
"version": "0.5.2",
"version": "0.5.3",
"description": "A simplified abstraction of the AMQP 1.0 protocol",

@@ -53,3 +53,3 @@ "keywords": [

},
"gitHead": "d1bcd4513b0aee73108a1cf667a4e8d24c422c9f"
"gitHead": "c464cd8af094d79bb4236f4daac5b4253e5bfff5"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc