Package org.atomojo.app.sync

Examples of org.atomojo.app.sync.Synchronizer.sync()


         } else {
            sync = new PushSynchronizer(getContext().getLogger(),db,storage,proc);
         }
         try {
            sync.setSynchronizationAt(new Date());
            sync.sync();
            if (sync.getErrorCount()>0) {
               getResponse().setStatus(Status.SERVER_ERROR_INTERNAL);
               return new StringRepresentation("There were "+sync.getErrorCount()+" synchronization errors.  See the log for details.");
            } else {
               getResponse().setStatus(Status.SUCCESS_OK);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.