Giter Club home page Giter Club logo

Comments (5)

germanattanasio avatar germanattanasio commented on August 17, 2024

Reading the documentation seems like the problem could be that the ReadingThread is calling sendBinary().

I think I'm completely lost. 😲

from nv-websocket-client.

TakahikoKawasaki avatar TakahikoKawasaki commented on August 17, 2024
if (message != "listening")

This is a beginners' bug. Use equals(Object) method when you compare strings.

from nv-websocket-client.

TakahikoKawasaki avatar TakahikoKawasaki commented on August 17, 2024

Don't write a while loop in a callback method such as onTextMessage. Program within a callback method should finish as quickly as possible. This rule is not specific to nv-websocket-client. Rather, it is a general rule (i.e. programming basics). If you want to trigger something that takes a long time, it should be done asynchronously.

from nv-websocket-client.

TakahikoKawasaki avatar TakahikoKawasaki commented on August 17, 2024

A WebSocket message (text message or binary message) consists of one or more frames. sendBinary() sends one binary frame and the frame composes one binary message.

If you want to send one binary message that consists of multiple frames, you have to do the following.

  1. sendBinary(...data..., false)
  2. sendContinuation(...data...)
  3. ....
  4. sendContinuation(...data..., true)

See "Send Frames" in README.md for details.

from nv-websocket-client.

germanattanasio avatar germanattanasio commented on August 17, 2024

Thanks

from nv-websocket-client.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.