Beispiel #1
0
 public DefaultProcessManagerInstaller(IEnumerable <IManageProcess> processManagers, EventStoreConnectionString eventStoreConnectionString, IEventStoreConnection eventStoreConnection, IDictionary <string, object> environment)
 {
     _processManagers            = processManagers;
     _eventStoreConnectionString = eventStoreConnectionString;
     _eventStoreConnection       = eventStoreConnection;
     _environment = environment;
 }
 public DefaultProjectionsInstaller(IEnumerable <IEventStoreProjection> projections, EventStoreConnectionString eventStoreConnectionString)
 {
     _projections = projections;
     _eventStoreConnectionString = eventStoreConnectionString;
 }
Beispiel #3
0
 public DefaultSubscriberInstaller(EventStoreConnectionString eventStoreConnectionString, IEventStoreConnection eventStoreConnection, IDictionary <string, object> environment)
 {
     _eventStoreConnectionString = eventStoreConnectionString;
     _eventStoreConnection       = eventStoreConnection;
     _environment = environment;
 }