rn-verto-typescript
Version:
Verto Free Switch with React Native Type Script
25 lines (24 loc) • 756 B
TypeScript
import VertinhoClient from "../verto/VertoClient";
export default class ConferenceLiveArray {
private hashTable;
private orderedCallIds;
private lastSerialNumber;
private serialNumberErrors;
private verto;
private liveArrayChannel;
private conferenceName;
private callbacks;
private subscription;
private destroyed;
constructor(verto: VertinhoClient, liveArrayChannel: any, conferenceName: string, callbacks?: {});
destroy(): void;
private insertValue;
deleteValue(callId: string): boolean;
private checkSerialNumber;
private handleBootingEvent;
private handleAddingEvent;
private handleModifyingEvent;
private handleDeleteEvent;
private handleEvent;
private bootstrap;
}