You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ConnectionPlugin.js 222B

1234567891011
  1. /**
  2. * Base class for strophe connection plugins.
  3. */
  4. export default class ConnectionPlugin {
  5. constructor() {
  6. this.connection = null;
  7. }
  8. init (connection) {
  9. this.connection = connection;
  10. }
  11. }