Sha256: e32c899925af03c696714027e469b72f9f62689b0f62f156621e463d5e6ad300

Contents?: true

Size: 894 Bytes

Versions: 34

Compression:

Stored size: 894 Bytes

Contents

'use strict';

var inherits = require('inherits')
  , AjaxBasedTransport = require('./lib/ajax-based')
  , XhrReceiver = require('./receiver/xhr')
  , XHRCorsObject = require('./sender/xhr-cors')
  , XHRLocalObject = require('./sender/xhr-local')
  ;

function XhrPollingTransport(transUrl) {
  if (!XHRLocalObject.enabled && !XHRCorsObject.enabled) {
    throw new Error('Transport created when disabled');
  }
  AjaxBasedTransport.call(this, transUrl, '/xhr', XhrReceiver, XHRCorsObject);
}

inherits(XhrPollingTransport, AjaxBasedTransport);

XhrPollingTransport.enabled = function(info) {
  if (info.nullOrigin) {
    return false;
  }

  if (XHRLocalObject.enabled && info.sameOrigin) {
    return true;
  }
  return XHRCorsObject.enabled;
};

XhrPollingTransport.transportName = 'xhr-polling';
XhrPollingTransport.roundTrips = 2; // preflight, ajax

module.exports = XhrPollingTransport;

Version data entries

34 entries across 33 versions & 12 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/sockjs-client/lib/transport/xhr-polling.js
disco_app-0.18.0 test/dummy/node_modules/sockjs-client/lib/transport/xhr-polling.js
disco_app-0.18.2 test/dummy/node_modules/sockjs-client/lib/transport/xhr-polling.js
disco_app-0.16.1 test/dummy/node_modules/sockjs-client/lib/transport/xhr-polling.js
disco_app-0.15.2 test/dummy/node_modules/sockjs-client/lib/transport/xhr-polling.js
disco_app-0.18.4 test/dummy/node_modules/sockjs-client/lib/transport/xhr-polling.js
disco_app-0.18.1 test/dummy/node_modules/sockjs-client/lib/transport/xhr-polling.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/sockjs-client/lib/transport/xhr-polling.js
disco_app-0.14.0 test/dummy/node_modules/sockjs-client/lib/transport/xhr-polling.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/sockjs-client/lib/transport/xhr-polling.js
tang-0.2.1 spec/tang_app/node_modules/sockjs-client/lib/transport/xhr-polling.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/sockjs-client/lib/transport/xhr-polling.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/sockjs-client/lib/transport/xhr-polling.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/sockjs-client/lib/transport/xhr-polling.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/sockjs-client/lib/transport/xhr-polling.js
tang-0.2.0 spec/tang_app/node_modules/sockjs-client/lib/transport/xhr-polling.js
tang-0.1.0 spec/tang_app/node_modules/sockjs-client/lib/transport/xhr-polling.js
tang-0.0.9 spec/tang_app/node_modules/sockjs-client/lib/transport/xhr-polling.js
enju_library-0.3.8 spec/dummy/node_modules/sockjs-client/lib/transport/xhr-polling.js
ilog-0.4.1 node_modules/sockjs-client/lib/transport/xhr-polling.js