Source: PingPong.js

  1. export { PingPong }
  2. /**
  3. * (Metric) A "holding struct" for pings and their experienced round-trip times - you may "subscribe" to ping results
  4. * using {@link MatsSocket#addPingPongListener()}, and you may get the latest pings from the property
  5. * {@link MatsSocket#pings}.
  6. *
  7. * @param {number} pingId
  8. * @param {number} sentTimestamp
  9. * @class
  10. */
  11. function PingPong(pingId, sentTimestamp) {
  12. /**
  13. * Sequence of the ping.
  14. *
  15. * @type {number}
  16. */
  17. this.pingId = pingId;
  18. /**
  19. * Millis-from-epoch when this ping was sent.
  20. *
  21. * @type {number}
  22. */
  23. this.sentTimestamp = sentTimestamp;
  24. /**
  25. * The experienced round-trip time for this ping-pong - this is the time back-and-forth.
  26. *
  27. * <b>Note that this number can be a float, not necessarily integer</b>.
  28. *
  29. * @type {number}
  30. */
  31. this.roundTripMillis = undefined;
  32. }