private static void dispatchOperations(RemoteObjectImpl remoteObject) {
   List<Operation> operations = getOperations(remoteObject);
   if (!operations.isEmpty()) {
     OperationHandler handler = getHandler(remoteObject);
     for (Operation operation : operations) {
       dispatchOperation(handler, operation);
     }
   }
 }