Raven.Storage.Esent.TransactionalStorage.TransactionalStorage C# (CSharp) 메소드

TransactionalStorage() 정적인 개인적인 메소드

static private TransactionalStorage ( ) : System
리턴 System
		static TransactionalStorage()
		{
			try
			{
				SystemParameters.MaxInstances = 1024;
			}
			catch (EsentErrorException e)
			{
				// this is expected if we had done something like recycyling the app domain
				// because the engine state is actually at the process level (unmanaged)
				// so we ignore this error
				if (e.Error == JET_err.AlreadyInitialized)
					return;
				throw;
			}
		}

Same methods

TransactionalStorage::TransactionalStorage ( InMemoryRavenConfiguration configuration, Action onCommit ) : System