You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constvideoElement=this.elRef.nativeElement.firstElementChild;letiovCollection: IovCollection;// define a function that instantiates an IovCollection, and creates an iovconstcreateIov=async()=>{iovCollection=IovCollection.asSingleton();console.log(iovCollection);constiov=awaitiovCollection.create({ videoElement }asany);awaitiov.changeSrc(url);};// create iovawaitcreateIov();// destroy it after creationawaitiovCollection.destroy();// create againawaitcreateIov();
Basically it does the following:
Instantiate a IovCollection and create a iov
After that destroy the iovCollection
Try to create again
This is the exception generated:
The excepction is caused by this.:
The text was updated successfully, but these errors were encountered:
The following code generates an exception:
Basically it does the following:
This is the exception generated:
The excepction is caused by this.:
The text was updated successfully, but these errors were encountered: