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

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


    ArgumentChecker.notNull(executionOptions, "executionOptions");
    ArgumentChecker.notNull(viewDefinition, "viewDefinition");
    _context = context;
    _executionOptions = executionOptions;
    _cycleRequested = !executionOptions.getFlags().contains(ViewExecutionFlags.WAIT_FOR_INITIAL_TRIGGER);
    _compilationExpiryCycleTrigger = new FixedTimeTrigger();
    addMasterCycleTrigger(_compilationExpiryCycleTrigger);
    if (executionOptions.getFlags().contains(ViewExecutionFlags.TRIGGER_CYCLE_ON_TIME_ELAPSED)) {
      addMasterCycleTrigger(new RecomputationPeriodTrigger(new Supplier<ViewDefinition>() {
        @Override
        public ViewDefinition get() {
View Full Code Here

TOP

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

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.