public interface VoipPushListener
Told about calls that arrived as VoIP pushes, and about the token needed to send them.
Both methods arrive on the EDT.
Methods
public abstract void callReceived(PushedCall call) | A call arrived as a push. |
public abstract void tokenChanged(String token) | The VoIP push token changed. |
Method details
callReceived
public abstract void callReceived(PushedCall call)A call arrived as a push. It is already ringing unless
PushedCall.isStale() says it is over – see PushedCall.tokenChanged
public abstract void tokenChanged(String token)The VoIP push token changed. Send it to the application’s server;
this is not the same token as the ordinary push registration.