Class CallAudioStream
- Object
-
- CallAudioStream
-
- Direct Known Subclasses:
IncomingAudioStream
,OutgoingAudioStream
public abstract class CallAudioStream extends Object
Base class for all Audio Stream objects
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.StreamDirection
getDirection()
Informs if the audio is Incoming or OutgoingAudioStreamState
getState()
Informs the state of the Audio Stream.AudioStreamType
getType()
Informs the kind of the Audio Stream.
-
-
-
Method Detail
-
finalize
protected void finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.- Overrides:
finalize
in classObject
-
getType
public AudioStreamType getType()
Informs the kind of the Audio Stream.
-
getState
public AudioStreamState getState()
Informs the state of the Audio Stream.
-
getDirection
public StreamDirection getDirection()
Informs if the audio is Incoming or Outgoing
-
-