react-native-tcp-socket icon indicating copy to clipboard operation
react-native-tcp-socket copied to clipboard

Migrate to a NodeJS out-of-the-box client Socket API

Open Rapsssito opened this issue 4 years ago • 0 comments

  • Methods:
    • [x] socket.setNoDelay() (#52) Originally posted by @Overtorment in https://github.com/Rapsssito/react-native-tcp-socket/issues/38#issuecomment-610916087
    • [x] socket.setKeepAlive() (#62) Originally posted by @Overtorment in https://github.com/Rapsssito/react-native-tcp-socket/issues/38#issuecomment-610916087
    • [x] socket.setEncoding() (#74) Originally posted by @Overtorment in https://github.com/Rapsssito/react-native-tcp-socket/issues/38#issuecomment-610916087
    • [x] socket.setTimeout() (#56)
    • [x] socket.pause() (#115)
    • [x] socket.ref()(#84)
    • [x] socket.resume() (#115)
    • [x] socket.unref() (#84)
  • Properties:
    • [ ] socket.bufferSize
    • [x] socket.bytesRead (7c943045f0564e3d848dfc21de49b1c8952ac7f9)
    • [x] socket.bytesWritten (7c943045f0564e3d848dfc21de49b1c8952ac7f9)
    • [x] socket.connecting (7c943045f0564e3d848dfc21de49b1c8952ac7f9)
    • [x] socket.destroyed (7c943045f0564e3d848dfc21de49b1c8952ac7f9)
    • [x] socket.localAddress (#94)
    • [x] socket.localPort (#94)
    • [x] socket.pending (7c943045f0564e3d848dfc21de49b1c8952ac7f9)
    • [x] socket.remoteAddress (#94)
    • [x] socket.remoteFamily (#94)
    • [x] socket.remotePort (#94)
    • [x] socket.timeout (#131)
    • [x] socket.readyState (7c943045f0564e3d848dfc21de49b1c8952ac7f9)
  • Events:
    • [x] drain (#115)
    • [ ] end
    • [ ] lookup

In the meantime, you can use these two adapters provided by BlueWallet: net API & tls API.

Rapsssito avatar Apr 08 '20 15:04 Rapsssito