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

fluentd-node

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fluentd-node - npm Package Compare versions

Comparing version 0.0.12 to 0.0.13

12

build/src/client.d.ts

@@ -341,2 +341,14 @@ import EventTime from "./event_time";

private clearAcks;
/**
* Returns the number of queued events that haven't been sent yet
*
* Useful to react if we're queuing up too many events within a single tick
*/
get queueLength(): number;
/**
* Returns whether or not the socket is writable
*
* Useful to react if we're disconnected for any reason
*/
get writable(): boolean;
}

@@ -498,4 +498,20 @@ "use strict";

}
/**
* Returns the number of queued events that haven't been sent yet
*
* Useful to react if we're queuing up too many events within a single tick
*/
get queueLength() {
return this.sendQueue.queueLength;
}
/**
* Returns whether or not the socket is writable
*
* Useful to react if we're disconnected for any reason
*/
get writable() {
return this.socket.writable();
}
}
exports.FluentClient = FluentClient;
//# sourceMappingURL=client.js.map

2

package.json
{
"name": "fluentd-node",
"version": "0.0.12",
"version": "0.0.13",
"description": "A fluent protocol implementation in node",

@@ -5,0 +5,0 @@ "main": "./build/src/index.js",

@@ -804,2 +804,20 @@ import {

}
/**
* Returns the number of queued events that haven't been sent yet
*
* Useful to react if we're queuing up too many events within a single tick
*/
get queueLength(): number {
return this.sendQueue.queueLength;
}
/**
* Returns whether or not the socket is writable
*
* Useful to react if we're disconnected for any reason
*/
get writable(): boolean {
return this.socket.writable();
}
}

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