From eb053db454a05489c8476eb3df0c6a9b9c5d4c02 Mon Sep 17 00:00:00 2001 From: Francis Gulotta Date: Mon, 25 Jun 2018 03:04:55 -0400 Subject: [PATCH] docs: regenerate docs --- docs/BaseBinding.html | 2 +- docs/DarwinBinding.html | 2 +- docs/LinuxBinding.html | 2 +- docs/MockBinding.html | 2 +- docs/Poller.html | 2 +- docs/SerialPort.html | 2 +- docs/WindowsBinding.html | 2 +- docs/bindings_base.js.html | 2 +- docs/bindings_darwin.js.html | 3 ++- docs/bindings_linux.js.html | 3 ++- docs/bindings_mock.js.html | 2 +- docs/bindings_poller.js.html | 12 +++++++++++- docs/bindings_win32.js.html | 2 +- docs/global.html | 2 +- docs/index.html | 6 +++--- docs/index.js.html | 2 +- docs/parsers.js.html | 14 +++++++------- docs/serialport.js.html | 2 +- 18 files changed, 38 insertions(+), 26 deletions(-) diff --git a/docs/BaseBinding.html b/docs/BaseBinding.html index 4c6ed4a4c..58fe5be52 100644 --- a/docs/BaseBinding.html +++ b/docs/BaseBinding.html @@ -2367,7 +2367,7 @@
Returns:

diff --git a/docs/DarwinBinding.html b/docs/DarwinBinding.html index 396f89785..123d59ca4 100644 --- a/docs/DarwinBinding.html +++ b/docs/DarwinBinding.html @@ -170,7 +170,7 @@

new Darw
- Documentation generated at Sun Apr 15 2018 22:06:31 GMT-0400 (EDT) + Documentation generated at Mon Jun 25 2018 03:04:41 GMT-0400 (EDT)
diff --git a/docs/LinuxBinding.html b/docs/LinuxBinding.html index 37ac58b44..85d3eb4ff 100644 --- a/docs/LinuxBinding.html +++ b/docs/LinuxBinding.html @@ -170,7 +170,7 @@

new Linux
- Documentation generated at Sun Apr 15 2018 22:06:32 GMT-0400 (EDT) + Documentation generated at Mon Jun 25 2018 03:04:41 GMT-0400 (EDT)
diff --git a/docs/MockBinding.html b/docs/MockBinding.html index 659a0f7fd..4eed68ed2 100644 --- a/docs/MockBinding.html +++ b/docs/MockBinding.html @@ -170,7 +170,7 @@

new MockBi
- Documentation generated at Sun Apr 15 2018 22:06:32 GMT-0400 (EDT) + Documentation generated at Mon Jun 25 2018 03:04:41 GMT-0400 (EDT)
diff --git a/docs/Poller.html b/docs/Poller.html index d92db85c4..9111266df 100644 --- a/docs/Poller.html +++ b/docs/Poller.html @@ -576,7 +576,7 @@

Returns:

diff --git a/docs/SerialPort.html b/docs/SerialPort.html index c1c33496c..93ce8578d 100644 --- a/docs/SerialPort.html +++ b/docs/SerialPort.html @@ -2961,7 +2961,7 @@
Returns:

diff --git a/docs/WindowsBinding.html b/docs/WindowsBinding.html index bf136ad75..d286f7d59 100644 --- a/docs/WindowsBinding.html +++ b/docs/WindowsBinding.html @@ -170,7 +170,7 @@

new Win
- Documentation generated at Sun Apr 15 2018 22:06:32 GMT-0400 (EDT) + Documentation generated at Mon Jun 25 2018 03:04:41 GMT-0400 (EDT)
diff --git a/docs/bindings_base.js.html b/docs/bindings_base.js.html index 8dfb8ecc0..6ee7f84a5 100644 --- a/docs/bindings_base.js.html +++ b/docs/bindings_base.js.html @@ -288,7 +288,7 @@

bindings/base.js


diff --git a/docs/bindings_darwin.js.html b/docs/bindings_darwin.js.html index cbfd9f24e..f0890ed52 100644 --- a/docs/bindings_darwin.js.html +++ b/docs/bindings_darwin.js.html @@ -94,6 +94,7 @@

bindings/darwin.js

.then(() => { const fd = this.fd; this.poller.stop(); + this.poller.destroy(); this.poller = null; this.openOptions = null; this.fd = null; @@ -160,7 +161,7 @@

bindings/darwin.js


diff --git a/docs/bindings_linux.js.html b/docs/bindings_linux.js.html index 09e8b7b0f..6b2a38e98 100644 --- a/docs/bindings_linux.js.html +++ b/docs/bindings_linux.js.html @@ -94,6 +94,7 @@

bindings/linux.js

.then(() => { const fd = this.fd; this.poller.stop(); + this.poller.destroy(); this.poller = null; this.openOptions = null; this.fd = null; @@ -160,7 +161,7 @@

bindings/linux.js


diff --git a/docs/bindings_mock.js.html b/docs/bindings_mock.js.html index 3067958e8..88819faed 100644 --- a/docs/bindings_mock.js.html +++ b/docs/bindings_mock.js.html @@ -294,7 +294,7 @@

bindings/mock.js


diff --git a/docs/bindings_poller.js.html b/docs/bindings_poller.js.html index 065596c57..8cc89d67e 100644 --- a/docs/bindings_poller.js.html +++ b/docs/bindings_poller.js.html @@ -136,6 +136,16 @@

bindings/poller.js

stop() { logger('Stopping poller'); this.poller.stop(); + this.emitCanceled(); + } + + destroy() { + logger('Destroying poller'); + this.poller.destroy(); + this.emitCanceled(); + } + + emitCanceled() { const err = new Error('Canceled'); err.canceled = true; this.emit('readable', err); @@ -159,7 +169,7 @@

bindings/poller.js


diff --git a/docs/bindings_win32.js.html b/docs/bindings_win32.js.html index 67ea21413..4063c0b83 100644 --- a/docs/bindings_win32.js.html +++ b/docs/bindings_win32.js.html @@ -166,7 +166,7 @@

bindings/win32.js


diff --git a/docs/global.html b/docs/global.html index 87d1a9f94..d29503273 100644 --- a/docs/global.html +++ b/docs/global.html @@ -2100,7 +2100,7 @@

open


diff --git a/docs/index.html b/docs/index.html index 4e982d7db..ca7caf1d4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -61,7 +61,7 @@

Intro to Node-Serialport

Imagine a world where you can write JavaScri

We're not against firmware but we're better than it.

Quick Answers to Important Questions