Package com.opengamma.engine.view.worker.trigger

Examples of com.opengamma.engine.view.worker.trigger.ViewCycleType


        cycleEligibility = ViewCycleEligibility.FORCE;
        _forceTriggerCycle = false;
      }
      if (cycleEligibility == ViewCycleEligibility.FORCE || (cycleEligibility == ViewCycleEligibility.ELIGIBLE && _cycleRequested)) {
        _cycleRequested = false;
        ViewCycleType cycleType = triggerResult.getCycleType();
        if (_previousCycleReference == null) {
          // Cannot do a delta if we have no previous cycle
          cycleType = ViewCycleType.FULL;
        }
        try {
View Full Code Here


     */
    @Override
    protected void runOneCycle() {
      // Exception handling is important here to ensure that computation jobs do not just die quietly while consumers are
      // potentially blocked, waiting for results.
      ViewCycleType cycleType;
      try {
        cycleType = waitForNextCycle();
      } catch (final InterruptedException e) {
        return;
      }
View Full Code Here

TOP

Related Classes of com.opengamma.engine.view.worker.trigger.ViewCycleType

Copyright © 2018 www.massapicom. 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.