Package com.opengamma.engine.exec.plan

Examples of com.opengamma.engine.exec.plan.CachingExecutionPlanner$DependencyGraphKey


  /**
   * Invalidates any cached execution plans (if caching is enabled). If any of the parameters have been changed then this should be called so that they will take effect instead of any previously
   * cached plans being used.
   */
  public void invalidateCache() {
    final CachingExecutionPlanner planner = _cachingPlanner;
    if (planner != null) {
      planner.invalidate();
    }
  }
View Full Code Here


  @Override
  public void afterPropertiesSet() {
    final CacheManager cacheManager = getCacheManager();
    if (cacheManager != null) {
      if (_cachingPlanner == null) {
        _cachingPlanner = new CachingExecutionPlanner(_basePlanner, cacheManager);
      }
      setPlanner(_cachingPlanner);
    }
  }
View Full Code Here

TOP

Related Classes of com.opengamma.engine.exec.plan.CachingExecutionPlanner$DependencyGraphKey

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.