Package org.jitsi.service.neomedia.event
Interface DTMFListener
-
public interface DTMFListenerThe purpose of a DTMFListener is to notify implementors when new DMTF tones are received by this MediaService implementation.- Author:
- Emil Ivov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddtmfToneReceptionEnded(DTMFToneEvent event)Indicates that reception of a DTMF tone has stopped.voiddtmfToneReceptionStarted(DTMFToneEvent event)Indicates that we have started receiving a DTMFTone.
-
-
-
Method Detail
-
dtmfToneReceptionStarted
void dtmfToneReceptionStarted(DTMFToneEvent event)
Indicates that we have started receiving a DTMFTone.- Parameters:
event- the DTMFToneEvent instance containing the DTMFTone
-
dtmfToneReceptionEnded
void dtmfToneReceptionEnded(DTMFToneEvent event)
Indicates that reception of a DTMF tone has stopped.- Parameters:
event- the DTMFToneEvent instance containing the DTMFTone
-
-