Package com.opengamma.engine.view.listener

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


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

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

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

  @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

Related Classes of com.opengamma.engine.view.listener.CycleStartedCall

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.