-
-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate to a NodeJS out-of-the-box client Socket API #41
Labels
Comments
Rapsssito
changed the title
Add setNoDelay, setKeepAlive & setEncoding methods
Migrate to a NodeJS out-of-the-box ready API
Jun 15, 2020
Rapsssito
added a commit
that referenced
this issue
Jun 16, 2020
Switch to NodeJS's EventEmitter as parent class as part of the migration to a NodeJS out-of-the-box approach (#41). BREAKING CHANGE: Sockets will no longer return RemovableListeners when calling their addListener() method. Now they inherit all the event methods from Node's EventEmitter class.
github-actions bot
pushed a commit
that referenced
this issue
Jun 16, 2020
# [4.0.0](v3.7.1...v4.0.0) (2020-06-16) ### Features * Switch to NodeJS's EventEmitter as parent class ([#55](#55)) ([d21bb0b](d21bb0b)), closes [#41](#41) ### BREAKING CHANGES * Sockets will no longer return RemovableListeners when calling their addListener() method. Now they inherit all the event methods from Node's EventEmitter class.
Merged
This was referenced Sep 2, 2020
Rapsssito
changed the title
Migrate to a NodeJS out-of-the-box ready API
Migrate to a NodeJS out-of-the-box client Socket API
Feb 22, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
socket.setNoDelay()
(feat: Add setNoDelay() method #52) Originally posted by @Overtorment in SSL/TLS support #38 (comment)socket.setKeepAlive()
(feat: Add setKeepAlive() method #62) Originally posted by @Overtorment in SSL/TLS support #38 (comment)socket.setEncoding()
(feat: Add setEncoding() #74) Originally posted by @Overtorment in SSL/TLS support #38 (comment)socket.setTimeout()
(feat: Add setTimeout() method #56)socket.pause()
(feat: Implement backpressure handling #115)socket.ref()
(fix: Add ref() & unref() as empty methods #84)socket.resume()
(feat: Implement backpressure handling #115)socket.unref()
(fix: Add ref() & unref() as empty methods #84)socket.bufferSize
socket.bytesRead
(7c94304)socket.bytesWritten
(7c94304)socket.connecting
(7c94304)socket.destroyed
(7c94304)socket.localAddress
(feat: Add socket address properties #94)socket.localPort
(feat: Add socket address properties #94)socket.pending
(7c94304)socket.remoteAddress
(feat: Add socket address properties #94)socket.remoteFamily
(feat: Add socket address properties #94)socket.remotePort
(feat: Add socket address properties #94)socket.timeout
(feat: Publish Socket timeout property #131)socket.readyState
(7c94304)drain
(feat: Implement backpressure handling #115)end
lookup
In the meantime, you can use these two adapters provided by BlueWallet: net API & tls API.
The text was updated successfully, but these errors were encountered: