Example #1
0
 public boolean startSynchronization() {
   if (chromatticLifeCycle.getManager().getSynchronization() == null) {
     chromatticLifeCycle.getManager().beginRequest();
     return true;
   }
   return false;
 }
 public ChromatticSession getSession() {
   return lifeCycle.getChromattic().openSession();
 }
Example #3
0
 public void stopSynchronization(boolean requestClose) {
   if (requestClose) {
     chromatticLifeCycle.getManager().endRequest(true);
   }
 }