HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/thread-self/cwd/node_modules/pusher-js/src/runtimes/isomorphic/http/
Upload File :
Current File : //proc/thread-self/cwd/node_modules/pusher-js/src/runtimes/isomorphic/http/http.ts
import HTTPRequest from 'core/http/http_request';
import HTTPSocket from 'core/http/http_socket';
import SocketHooks from 'core/http/socket_hooks';
import RequestHooks from 'core/http/request_hooks';
import streamingHooks from 'core/http/http_streaming_socket';
import pollingHooks from 'core/http/http_polling_socket';
import xhrHooks from './http_xhr_request';
import HTTPFactory from 'core/http/http_factory';

var HTTP: HTTPFactory = {
  createStreamingSocket(url: string): HTTPSocket {
    return this.createSocket(streamingHooks, url);
  },

  createPollingSocket(url: string): HTTPSocket {
    return this.createSocket(pollingHooks, url);
  },

  createSocket(hooks: SocketHooks, url: string): HTTPSocket {
    return new HTTPSocket(hooks, url);
  },

  createXHR(method: string, url: string): HTTPRequest {
    return this.createRequest(xhrHooks, method, url);
  },

  createRequest(hooks: RequestHooks, method: string, url: string): HTTPRequest {
    return new HTTPRequest(hooks, method, url);
  }
};

export default HTTP;