IDkmDeploymentCommandCallback Interface

Definition

Callback interface implemented by callers of DkmDeploymentCommand.Start to receive notification of events in the deployment command.

Implementations of this interface may restrict when they are called using a filter defined in their component configuration. The following properties may be used: SourceId, TransportKind.

public interface class IDkmDeploymentCommandCallback
public interface class IDkmDeploymentCommandCallback
__interface IDkmDeploymentCommandCallback
public interface IDkmDeploymentCommandCallback
type IDkmDeploymentCommandCallback = interface
Public Interface IDkmDeploymentCommandCallback

Methods

OnProcessExit(DkmDeploymentCommand, Int32)

Indication that the launched command has completed. After this is received, no further notifications will be sent.

OnStdErr(DkmDeploymentCommand, String)

Indication that the target wrote to stderr. This will not be used if the DkmDeploymentCommandFlags.CombineStdErr flag is used. Note that the output from stderr and stdout is not synchronized, so if a program writes to stdout before stderr, a listener may still get the stderr output first (or vice versa).

OnStdOut(DkmDeploymentCommand, String)

Indication that the target wrote to stdout. This is also used for StdErr if the DkmDeploymentCommandFlags.CombineStdErr flag is used.

Applies to