Example #1
0
        public void AddReplication(ReplicationCommand command)
        {
            if (!_databases.ContainsKey(command.DatabaseName))
                throw new ReplicationFactoryException(string.Format("Database not found, or not attached: {0}", command.DatabaseName));

            var database = _databases[command.DatabaseName];
        }
Example #2
0
 public void RemoveReplication(ReplicationCommand command)
 {
 }