IStageCallback Interface

 

Enables the plug-in to report progress and results of the stage operation.

Namespace:   Microsoft.ClusterAwareUpdating
Assembly:  ClusterAwareUpdating (in ClusterAwareUpdating.dll)

Syntax

public interface IStageCallback : ICauPluginCallbackBase
public interface class IStageCallback : ICauPluginCallbackBase
type IStageCallback = 
    interface
        interface ICauPluginCallbackBase
    end
Public Interface IStageCallback
    Inherits ICauPluginCallbackBase

Methods

Name Description
System_CAPS_pubmethod ReportStagingResult(UpdateStagingResult)

Callback method used by the plug-in to report the result of staging an update.

System_CAPS_pubmethod WriteDebug(String)

Reports a message to the debug stream.(Inherited from ICauPluginCallbackBase.)

System_CAPS_pubmethod WriteDebug(String, Object[])

Reports a message to the debug stream.(Inherited from ICauPluginCallbackBase.)

System_CAPS_pubmethod WriteError(ErrorRecord)

Callback method for reporting errors that the plug-in encountered while running.(Inherited from ICauPluginCallbackBase.)

System_CAPS_pubmethod WriteProgress(ProgressRecord)

Reports progress during the current operation by the plug-in.(Inherited from ICauPluginCallbackBase.)

System_CAPS_pubmethod WriteVerbose(String)

Callback method used by the plug-in to report verbose messages (without string formatting).(Inherited from ICauPluginCallbackBase.)

System_CAPS_pubmethod WriteVerbose(String, Object[])

Callback method used by the plug-in to report verbose messages (with string formatting allowed).(Inherited from ICauPluginCallbackBase.)

System_CAPS_pubmethod WriteWarning(String)

Callback method used by the plug-in to report warning messages (without string formatting).(Inherited from ICauPluginCallbackBase.)

System_CAPS_pubmethod WriteWarning(String, Object[])

Callback method used by the plug-in to report warning messages (with string formatting allowed).(Inherited from ICauPluginCallbackBase.)

Remarks

This interface is implemented by CAU; plug-in developers do not need to implement it. However, plug-in developers must ensure that the progress updates on this operation not indicate a percentage completion that is less than 0 percent or more than 100 percent.

See Also

ICauPluginCallbackBase
IClusterNodeUpdater
IClusterUpdatingPlugin
Microsoft.ClusterAwareUpdating Namespace

Return to top