コード例 #1
0
 /// <summary>
 /// Transforms a comonent into a caching factory of components
 /// </summary>
 /// <param name="component">Component to decorate with hash based caching</param>
 public CellRequestMapCachingFactory(ICellRequestMap <T> component, IEquatibleGeoCellConverter converter)
 {
     this.component = component;
     this.converter = converter;
 }
コード例 #2
0
 public CellRequestMapCacheDecorator(IEquatibleGeoCellConverter converter, ICellRequestMap <T> component)
 {
     this.converter = converter;
     this.component = component;
 }