Rhino.Queues.Storage.QueueStorage.ConfigureInstance C# (CSharp) Method

ConfigureInstance() private method

private ConfigureInstance ( JET_INSTANCE jetInstance ) : void
jetInstance JET_INSTANCE
return void
        private void ConfigureInstance(JET_INSTANCE jetInstance)
        {
            new InstanceParameters(jetInstance)
            {
                CircularLog = true,
                Recovery = true,
                CreatePathIfNotExist = true,
                TempDirectory = Path.Combine(path, "temp"),
                SystemDirectory = Path.Combine(path, "system"),
                LogFileDirectory = Path.Combine(path, "logs"),
                MaxVerPages = 8192,
                MaxTemporaryTables = 8192
            };
        }