Examples of CycleStartedCall


Examples of com.opengamma.engine.view.listener.CycleStartedCall

    send(new ViewDefinitionCompilationFailedCall(valuationTime, exception));
  }
 
  @Override
  public void cycleStarted(ViewCycleMetadata cycleMetadata) {
    send(new CycleStartedCall(cycleMetadata));
  }
View Full Code Here

Examples of com.opengamma.engine.view.listener.CycleStartedCall

    callReceived(new ViewDefinitionCompilationFailedCall(valuationTime, exception));
  }

  @Override
  public void cycleStarted(ViewCycleMetadata cycleMetadata) {
    callReceived(new CycleStartedCall(cycleMetadata), true);
  }
View Full Code Here

Examples of com.opengamma.engine.view.listener.CycleStartedCall

      if (isPassThrough()) {
        getUnderlying().cycleStarted(cycleMetadata);
      } else {
        _previousCycleStartedIndex = _latestCycleStartedIndex;
        _latestCycleStartedIndex = _callQueue.size();
        _callQueue.add(new CycleStartedCall(cycleMetadata));
      }
    } finally {
      _mergerLock.unlock();
    }
  }
View Full Code Here

Examples of com.opengamma.engine.view.listener.CycleStartedCall

  @Override
  public CycleStartedCall buildObject(FudgeDeserializer deserializer, FudgeMsg msg) {
    FudgeField viewCycleInfoField = msg.getByName(METADATA_FIELD);
    ViewCycleMetadata cycleInfo = viewCycleInfoField != null ? deserializer.fieldValueToObject(ViewCycleMetadata.class, viewCycleInfoField) : null;
    return new CycleStartedCall(cycleInfo);
  }
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.