public interface BLCallStateListener
Modifier and Type | Method and Description |
---|---|
void |
callConnected(BLCall call)
Notifies the delegate that a Call has connected.
|
void |
callDisconnected(Throwable e)
Notifies the delegate that a Call has disconnected.
|
void |
callFailedToConnect(Throwable e)
Notifies the delegate that a Call has failed to connect.
|
void callConnected(@NonNull BLCall call)
call
- The _BLCall_ that was connected.void callFailedToConnect(@Nullable Throwable e)
e
- An error describing why failed to connect, or _null_ if it was expected.void callDisconnected(@Nullable Throwable e)
e
- An error describing why disconnect occurred, or _null_ if the disconnect was expected.