LogPolicy Clase

Definición

Representa la directiva asociada a LogStore.

public ref class LogPolicy sealed
public sealed class LogPolicy
type LogPolicy = class
Public NotInheritable Class LogPolicy
Herencia
LogPolicy

Ejemplos

Este ejemplo muestra cómo utilizar la clase LogPolicy para establecer una directiva para una secuencia de registro de entrada.

// SET LOG POLICY

LogPolicy policy = sequence.LogStore.Policy;

// Set AutoGrow policy. This enables the log to automatically grow
// when the existing extents are full. New extents are added until
// we reach the MaximumExtentCount extents.
// AutoGrow policy is supported only in Windows Vista and not available in R2.

//policy.AutoGrow = true;

// Set the Growth Rate in terms of extents. This policy specifies
// "how much" the log should grow.
policy.GrowthRate = new PolicyUnit(2, PolicyUnitType.Extents);

// Set the AutoShrink policy. This enables the log to automatically
// shrink if the available free space exceeds the shrink percentage.
// AutoGrow/shrink policy is supported only in Windows Vista and not available in R2.

//policy.AutoShrinkPercentage = new PolicyUnit(30, PolicyUnitType.Percentage);

// Set the PinnedTailThreshold policy.
// A tail pinned event is triggered when there is no
// log space available and log space may be freed by advancing the base.
// The user must handle the tail pinned event by advancing the base of the log.
// If the user is not able to move the base of the log, the user should report with exception in
// the tail pinned handler.
// PinnedTailThreashold policy dictates the amount of space that the TailPinned event requests
// for advancing the base of the log. The amount of space can be in percentage or in terms of bytes
// which is rounded off to the nearest containers in CLFS. The default is 35 percent.

policy.PinnedTailThreshold = new PolicyUnit(10, PolicyUnitType.Percentage);

// Set the maximum extents the log can have.
policy.MaximumExtentCount = 6;

// Set the minimum extents the log can have.
policy.MinimumExtentCount = 2;

// Set the prefix for new containers that are added.
// when AutoGrow is enabled.
//policy.NewExtentPrefix = "MyLogPrefix";

// Set the suffix number for new containers that are added.
// when AutoGrow is enabled.
policy.NextExtentSuffix = 3;

// Commit the log policy.
policy.Commit();

// Refresh updates the IO.Log policy properties with current log policy
// set in the log.
policy.Refresh();

// LOG POLICY END
//
' SET LOG POLICY

Dim policy As LogPolicy = sequence.LogStore.Policy

' Set AutoGrow policy. This enables the log to automatically grow
' when the existing extents are full. New extents are added until
' we reach the MaximumExtentCount extents.
' AutoGrow policy is supported only in Windows Vista and not available in R2.

'policy.AutoGrow = true;

' Set the Growth Rate in terms of extents. This policy specifies
' "how much" the log should grow. 
policy.GrowthRate = New PolicyUnit(2, PolicyUnitType.Extents)

' Set the AutoShrink policy. This enables the log to automatically
' shrink if the available free space exceeds the shrink percentage. 
' AutoGrow/shrink policy is supported only in Windows Vista and not available in R2.

'policy.AutoShrinkPercentage = new PolicyUnit(30, PolicyUnitType.Percentage);

' Set the PinnedTailThreshold policy.
' A tail pinned event is triggered when there is no
' log space available and log space may be freed by advancing the base.
' The user must handle the tail pinned event by advancing the base of the log. 
' If the user is not able to move the base of the log, the user should report with exception in
' the tail pinned handler.
' PinnedTailThreashold policy dictates the amount of space that the TailPinned event requests 
' for advancing the base of the log. The amount of space can be in percentage or in terms of bytes 
' which is rounded off to the nearest containers in CLFS. The default is 35 percent.


policy.PinnedTailThreshold = New PolicyUnit(10, PolicyUnitType.Percentage)

' Set the maximum extents the log can have.
policy.MaximumExtentCount = 6

' Set the minimum extents the log can have.
policy.MinimumExtentCount = 2

' Set the prefix for new containers that are added. 
' when AutoGrow is enabled.
'policy.NewExtentPrefix = "MyLogPrefix";

' Set the suffix number for new containers that are added.
' when AutoGrow is enabled. 
policy.NextExtentSuffix = 3

' Commit the log policy.
policy.Commit()

' Refresh updates the IO.Log policy properties with current log policy 
' set in the log. 
policy.Refresh()

' LOG POLICY END
'

Comentarios

Una directiva es un conjunto de reglas que seguirá una instancia de LogStore y sus clientes. Una instancia LogPolicy se utiliza para examinar y modificar la directiva asociada a un LogStoreespecífico. Una directiva puede describir los tamaños máximo y mínimo permitidos del registro, o cómo se permite que crezca la instancia de LogStore puede crecer. Además, también puede controlar si una instancia LogStore puede estar almacenada.

Después de cambiar cualquiera de las propiedades, debería utilizar el método Commit para asegurarse de que los cambios se aplican a LogStore. Puede llamar al método Refresh para descartar los cambios u obtener la directiva más actual.

Propiedades

AutoGrow

Obtiene o establece un valor que indica si LogStore puede crecer automáticamente.

AutoShrinkPercentage

Obtiene o establece el porcentaje de espacio disponible que LogStore puede reducir.

GrowthRate

Obtiene o establece la tasa de crecimiento automático de LogStore.

MaximumExtentCount

Obtiene o establece el número de instancias LogExtent que LogStore puede contener

MinimumExtentCount

Obtiene o establece el número mínimo de instancias LogExtent que LogStore puede contener

NewExtentPrefix

Obtiene o establece la cadena del prefijo para las extensiones automáticamente creadas.

NextExtentSuffix

Obtiene o establece el número del sufijo para las nuevas extensiones.

PinnedTailThreshold

Obtiene o establece la cantidad de espacio que el evento TailPinned requiere para avanzar la base del registro.

Métodos

Commit()

Establece esta directiva como la directiva actual para LogStore.

Equals(Object)

Determina si el objeto especificado es igual que el objeto actual.

(Heredado de Object)
GetHashCode()

Sirve como la función hash predeterminada.

(Heredado de Object)
GetType()

Obtiene el Type de la instancia actual.

(Heredado de Object)
MemberwiseClone()

Crea una copia superficial del Object actual.

(Heredado de Object)
Refresh()

Lee la directiva actual para LogStore, descartando cualquier modificación que se puede haber realizado.

ToString()

Devuelve una cadena que representa el objeto actual.

(Heredado de Object)

Se aplica a