UiApplication.getUiApplication().invokeLater(new Runnable() {
public void run() {
Object[] args;
try {
final MessagingService msgService = BBMPlatformNamespace.getInstance().getMessagingService();
final BBMPlatformOutgoingJoinRequest request = msgService.sendJoinRequest(hostPIN, hostPPID, cookie);
final Object scriptRequest;
if(request == null) {
scriptRequest = UNDEFINED;
} else {
scriptRequest = new ScriptableOutgoingJoinRequest(request, onHostAccepted, onHostDeclined);
_joinReq2ScriptReq.put(request.getRequestId(), scriptRequest);
}
args = new Object[] {
scriptRequest,
};