public InMemoryReactiveEnvironment(string connectionString)
 {
     StorageType           = MetadataStorageType.Azure;
     AzureConnectionString = connectionString;
     MessagingService      = new InMemoryMessagingService();
     StateStoreService     = new InMemoryStateStoreService();
     KeyValueStoreService  = new InMemoryKeyValueStoreService();
 }
 public InMemoryReactiveEnvironment()
 {
     StorageType          = MetadataStorageType.Remoting;
     MetadataService      = new InMemoryMetadataService();
     MessagingService     = new InMemoryMessagingService();
     StateStoreService    = new InMemoryStateStoreService();
     KeyValueStoreService = new InMemoryKeyValueStoreService();
 }
 public InMemoryReactiveEnvironment(IReactiveMetadataService metadataService, IReactiveMessagingService messagingService)
 {
     StorageType          = MetadataStorageType.Remoting;
     MetadataService      = metadataService;
     MessagingService     = messagingService;
     StateStoreService    = new InMemoryStateStoreService();
     KeyValueStoreService = new InMemoryKeyValueStoreService();
     _stateStoreOnly      = true;
 }