예제 #1
0
 public IndexStoreFeature(ConcurrentChain chain, IConnectionManager connectionManager, Signals.Signals signals, IndexRepository indexRepository,
                          IndexStoreCache indexStoreCache, IndexBlockPuller blockPuller, IndexStoreLoop indexStoreLoop, IndexStoreManager indexStoreManager,
                          IndexStoreSignaled indexStoreSignaled, INodeLifetime nodeLifetime, NodeSettings nodeSettings, ILoggerFactory loggerFactory) :
     base(chain, connectionManager, signals, indexRepository, indexStoreCache, blockPuller, indexStoreLoop, indexStoreManager,
          indexStoreSignaled, nodeLifetime, nodeSettings, loggerFactory, "IndexStore")
 {
 }
 public IndexStoreLoop(ConcurrentChain chain,
                       IndexRepository indexRepository,
                       NodeSettings nodeArgs,
                       ChainState chainState,
                       IndexBlockPuller blockPuller,
                       IndexStoreCache cache,
                       INodeLifetime nodeLifetime,
                       IAsyncLoopFactory asyncLoopFactory,
                       ILoggerFactory loggerFactory) :
     base(asyncLoopFactory, blockPuller, indexRepository, cache, chain, chainState, nodeArgs, nodeLifetime, loggerFactory, "IndexStore")
 {
     nodeArgs.Store.TxIndex = true;
 }
예제 #3
0
 public IndexStoreLoop(ConcurrentChain chain,
                       IIndexRepository indexRepository,
                       IndexSettings indexSettings,
                       ChainState chainState,
                       IndexBlockPuller blockPuller,
                       IIndexStoreCache cache,
                       INodeLifetime nodeLifetime,
                       IAsyncLoopFactory asyncLoopFactory,
                       ILoggerFactory loggerFactory,
                       IDateTimeProvider dateTimeProvider) :
     base(asyncLoopFactory, blockPuller, indexRepository, cache, chain, chainState, indexSettings, nodeLifetime, loggerFactory, dateTimeProvider)
 {
 }