選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }