Exemplo n.º 1
0
 public MemoryProjectionReaderWriter(IProjectionStrategy strategy, ConcurrentDictionary <string, byte[]> store)
 {
     _store    = store;
     _strategy = strategy;
 }
Exemplo n.º 2
0
 public MemoryProjectionStore(IProjectionStrategy strategy, ConcurrentDictionary <string, ConcurrentDictionary <string, byte[]> > store) : this(strategy)
 {
     _store = store;
 }
 public MongoProjectionReaderWriter(IProjectionStrategy strategy, IMongoCollection <BsonDocument> collection)
 {
     _strategy   = strategy;
     _collection = collection;
 }
Exemplo n.º 4
0
 public MemoryProjectionStore(IProjectionStrategy strategy)
 {
     _strategy = strategy;
 }