Interface VoipPushListener
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.
-
Method Summary
Modifier and TypeMethodDescriptionvoidcallReceived(PushedCall call) A call arrived as a push.voidtokenChanged(String token) The VoIP push token changed.
-
Method Details
-
callReceived
A call arrived as a push. It is already ringing unlessPushedCall.isStale()says it is over -- seePushedCall. -
tokenChanged
The VoIP push token changed. Send it to the application's server; this is not the same token as the ordinary push registration.
-