public static void postTimeoutEvent(ICommandListener listener) {
   if (listener != null) {
     try {
       listener.onTimeout();
     } catch (RemoteException e) {
       Timber.e(e, e.getMessage());
     }
   }
 }