Examples of CycleExecutionFailedCall


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

    send(new CycleCompletedCall(fullResult, deltaResult));
  }

  @Override
  public void cycleExecutionFailed(ViewCycleExecutionOptions executionOptions, Exception exception) {
    send(new CycleExecutionFailedCall(executionOptions, exception));
  }
View Full Code Here

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

    callReceived(new CycleCompletedCall(fullResult, deltaResult), true);
  }

  @Override
  public void cycleExecutionFailed(ViewCycleExecutionOptions executionOptions, Exception exception) {
    callReceived(new CycleExecutionFailedCall(executionOptions, exception));
  }
View Full Code Here

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

    _mergerLock.lock();
    try {
      if (isPassThrough()) {
        getUnderlying().cycleExecutionFailed(executionOptions, exception);
      } else {
        _callQueue.add(new CycleExecutionFailedCall(executionOptions, exception));
      }
    } finally {
      _mergerLock.unlock();
    }
  }
View Full Code Here

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

  @Override
  public CycleExecutionFailedCall buildObject(FudgeDeserializer deserializer, FudgeMsg msg) {
    ViewCycleExecutionOptions cycleExecutionOptions = deserializer.fieldValueToObject(ViewCycleExecutionOptions.class, msg.getByName(EXECUTION_OPTIONS_FIELD));
    FudgeField exceptionField = msg.getByName(EXCEPTION_FIELD);
    Exception exception = exceptionField != null ? deserializer.fieldValueToObject(Exception.class, exceptionField) : null;
    return new CycleExecutionFailedCall(cycleExecutionOptions, exception);
  }
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.