Interface AudioCapturer
-
- All Superinterfaces:
Destroyable
public interface AudioCapturer extends Destroyable
Describes interface for object, which can be used for audio capture control
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisCapturing()Allows to check if capturing is activebooleanstart()Starts capturing with provided configuration during object constructionvoidstop()Stops capturing-
Methods inherited from interface com.avaya.clientservices.media.gui.Destroyable
destroy
-
-
-
-
Method Detail
-
start
boolean start()
Starts capturing with provided configuration during object construction- Returns:
- returns true if capture start is successful
-
isCapturing
boolean isCapturing()
Allows to check if capturing is active- Returns:
- returns true if it's active
-
stop
void stop()
Stops capturing
-
-