Package com.opengamma.engine.view.listener

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


    send(new ProcessCompletedCall());
  }

  @Override
  public void processTerminated(boolean executionInterrupted) {
    send(new ProcessTerminatedCall(executionInterrupted));
  }
View Full Code Here


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

  @Override
  public void processTerminated(boolean executionInterrupted) {
    callReceived(new ProcessTerminatedCall(executionInterrupted));
  }
View Full Code Here

    _mergerLock.lock();
    try {
      if (isPassThrough()) {
        getUnderlying().processTerminated(executionInterrupted);
      } else {
        _callQueue.add(new ProcessTerminatedCall(executionInterrupted));
      }
      getCycleRetainer().replaceRetainedCycle(null);
    } finally {
      _mergerLock.unlock();
    }
View Full Code Here

  }

  @Override
  public ProcessTerminatedCall buildObject(FudgeDeserializer deserializer, FudgeMsg msg) {
    boolean executionInterrupted = msg.getBoolean(EXECUTION_INTERRUPTED_FIELD);
    return new ProcessTerminatedCall(executionInterrupted);
  }
View Full Code Here

TOP

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

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.