Arnout Kazemier

Results 137 comments of Arnout Kazemier

Could it be that this browser, device or even network specific? Could you give us some more information on how this was tested?

No, it seems to be a bug then which is most likely caused by a race condition somewhere. I wonder if this is something that is specific to a framework...

The only thing that I can suggest is to look at how our current transformers are written. They inherit from our Transformer module and listen to the internal events: https://github.com/primus/primus/blob/master/transformers/engine.io/client.js#L39...

This is now a lot easier to add as the file serving has been moved to a middleware layer: https://github.com/primus/primus/blob/master/middleware/primus.js

@Dashed yep, a simple `primus.remove('primus.js')` should do the trick for you.

You could probably use the internal m ssages for this. The outgoing::data etc Arnout Kazemier > On Oct 24, 2015, at 2:57 AM, siddo420 [email protected] wrote: > > In the...

You can disable the queue size and it should stop buffering. You can also check the readyState as OPEN is always sending unbuffered Arnout Kazemier > On Oct 24, 2015,...

Electron really has 3 JavaScript environments: 1. The nodejs side. 2. The electron/chromium side 3. The electron/chromium with webPreferences.nodeIntegration set to false. So which environment are we talking about here?...

As we're talking about cordova here, I assume that this is on mobile phones. Couldn't it just that your user is navigating between once wifi hotspot to another causing brief...

@akreienbring On more question regarding this, on which platform is your application hosted? @akreienbring And which transformer are you using?