Package com.opengamma.engine.view.listener

Examples of com.opengamma.engine.view.listener.CycleCompletedCall.update()


        // Result collapsing
        if (_cycleCompletedIndex != -1) {
          // There's an old cycle completed call in the queue - find it and move to end
          CycleCompletedCall cycleCompletedCall = pullCallToEnd(_cycleCompletedIndex);
          // Merge new cycle completed call into old one
          cycleCompletedCall.update(fullResult, deltaResult);
        } else {
          // No existing cycle completed call - add new one
          CycleCompletedCall cycleCompletedCall = new CycleCompletedCall(fullResult, deltaResult);
          _cycleCompletedIndex = _callQueue.size();
          _callQueue.add(cycleCompletedCall);
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.