Package org.jitsi.util.event
Interface VideoListener
-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
VideoTranslatorMediaDevice
public interface VideoListener extends EventListener
Defines the notification support informing about changes in the availability of visual Components representing video such as adding and removing.- Author:
- Lyubomir Marinov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvideoAdded(VideoEvent event)Notifies that a visual Component representing video has been added to the provider this listener has been added to.voidvideoRemoved(VideoEvent event)Notifies that a visual Component representing video has been removed from the provider this listener has been added to.voidvideoUpdate(VideoEvent event)Notifies about an update to a visual Component representing video.
-
-
-
Method Detail
-
videoAdded
void videoAdded(VideoEvent event)
Notifies that a visual Component representing video has been added to the provider this listener has been added to.- Parameters:
event- a VideoEvent describing the added visual Component representing video and the provider it was added into
-
videoRemoved
void videoRemoved(VideoEvent event)
Notifies that a visual Component representing video has been removed from the provider this listener has been added to.- Parameters:
event- a VideoEvent describing the removed visual Component representing video and the provider it was removed from
-
videoUpdate
void videoUpdate(VideoEvent event)
Notifies about an update to a visual Component representing video.- Parameters:
event- a VideoEvent describing the visual Component related to the update and the details of the specific update
-
-