use of com.zoho.livechat.android.exception.InvalidVisitorIDException in project SalesIQ-Mobilisten-ReactNative by zoho.
the class RNZohoSalesIQ method registerVisitor.
@ReactMethod
public void registerVisitor(final String uniqueid) {
Handler handler = new Handler(Looper.getMainLooper());
handler.post(new Runnable() {
public void run() {
try {
ZohoSalesIQ.registerVisitor(uniqueid);
} catch (InvalidVisitorIDException e) {
LiveChatUtil.log(e);
}
}
});
}
Aggregations