-
- All Implemented Interfaces:
public interface CallDetails
-
-
Method Summary
Modifier and Type Method Description abstract DategetStartedTime()Returns the started time of the call. abstract DategetEstablishedTime()Returns the established time of the call or 0 if call is not yet established. abstract DategetEndedTime()Returns the ended time of the call or 0 if call has not ended yet. abstract IntegergetDuration()Returns the duration of the call in seconds or 0 if call is not yet established. abstract CallEndCausegetEndCause()Returns the cause of why a call ended, after it has ended. abstract BooleanisVideoOffered()Checks whether the caller has offered video. abstract SinchErrorgetError()Returns an error object if an error occurred (the end cause is CallEndCause.FAILURE). -
-
Method Detail
-
getStartedTime
abstract Date getStartedTime()
Returns the started time of the call.
-
getEstablishedTime
abstract Date getEstablishedTime()
Returns the established time of the call or 0 if call is not yet established.
-
getEndedTime
abstract Date getEndedTime()
Returns the ended time of the call or 0 if call has not ended yet.
-
getDuration
abstract Integer getDuration()
Returns the duration of the call in seconds or 0 if call is not yet established.
-
getEndCause
abstract CallEndCause getEndCause()
Returns the cause of why a call ended, after it has ended.
-
isVideoOffered
abstract Boolean isVideoOffered()
Checks whether the caller has offered video.
-
getError
abstract SinchError getError()
Returns an error object if an error occurred (the end cause is CallEndCause.FAILURE). Returns null otherwise.
-
-
-
-