GithubHelp home page GithubHelp logo

Comments (5)

ooxi avatar ooxi commented on June 19, 2024

The question is why does your server drop the connection after 120 seconds of inactivity? Browsers do not normally act this way if you start sending at least some data (for example the { if you intend to send an object).

from oboe.js.

jimhigson avatar jimhigson commented on June 19, 2024

Yeah, like @ooxi says, I'm not seeing why the server would shut the connection if not data is being sent down it.

If the server is closing the connection, because Oboe is a client-side library so there's not much it can do to influence the behaviour on the server.

The only client side answer I can think of is to have the client re-open the connection when it goes down. You'd probably lose messages sent in the meantime though.

If you want to filter out fake data, you could always tag 'real' data with an attribute and then detect it like: oboe(url).node('!.{notfake}', function(realData){})

from oboe.js.

JuanCaicedo avatar JuanCaicedo commented on June 19, 2024

@goloroden What languages/frameworks are you using on your server-side? I would encourage you to ask the question there since as @jimhigson mentioned, this is out of Oboe's control. Would love to help though!

from oboe.js.

goloroden avatar goloroden commented on June 19, 2024

We are using Node.js on the server.

from oboe.js.

JuanCaicedo avatar JuanCaicedo commented on June 19, 2024

@goloroden I think you might be able to achieve this using the keep-alive http header. You could pass it with oboe like this

oboe({
    url: 'http://localhost:3000/data',
    headers: {
      'Connection' : 'keep-alive'
    }
  })

You need to teach your node server how to handle that header though since it seems like there's no official spec for it. I haven't tried it, but you could try using the agentkeepalive module.

Hopefully that works, I would be interested to find out how it goes!

from oboe.js.

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.