chore: remove joining emitter (#15588)

This commit is contained in:
Pavel Feldman 2022-07-12 12:04:20 -08:00 committed by GitHub
parent f42ab636f6
commit 8402001c32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,9 +25,8 @@ import { zones } from '../utils/zones';
import type { ClientInstrumentation } from './clientInstrumentation';
import type { Connection } from './connection';
import type { Logger } from './types';
import { JoiningEventEmitter } from './joiningEventEmitter';
export abstract class ChannelOwner<T extends channels.Channel = channels.Channel> extends JoiningEventEmitter {
export abstract class ChannelOwner<T extends channels.Channel = channels.Channel> extends EventEmitter {
readonly _connection: Connection;
private _parent: ChannelOwner | undefined;
private _objects = new Map<string, ChannelOwner>();