memberoftag5.js 239 B

12345678910111213141516171819
  1. 'use strict';
  2. /**
  3. * Socket class.
  4. * @class
  5. * @memberof module:network
  6. */
  7. function Socket() {}
  8. /**
  9. * Open the socket.
  10. */
  11. Socket.prototype.open = function() {};
  12. /**
  13. * Unique identifier for `Socket` class.
  14. */
  15. Socket.uid = '12345';