IProcessable Interface
Applies To: SQL Server (starting with 2016)
Represents an object that is processable.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices.Core (in Microsoft.AnalysisServices.Core.dll)
Syntax
[GuidAttribute("69A3B7FE-4E35-4238-BAD2-EA107BE0694F")]
public interface IProcessable
[GuidAttribute("69A3B7FE-4E35-4238-BAD2-EA107BE0694F")]
public interface class IProcessable
[<GuidAttribute("69A3B7FE-4E35-4238-BAD2-EA107BE0694F")>]
type IProcessable = interface end
<GuidAttribute("69A3B7FE-4E35-4238-BAD2-EA107BE0694F")>
Public Interface IProcessable
Properties
Name | Description | |
---|---|---|
LastProcessed | Gets the date and time on which the IProcessable was last processed. |
|
State | Gets the current state of the IProcessable that was last processed. |
Methods
Name | Description | |
---|---|---|
CanProcess(ProcessType) | Indicates whether the IProcessable can perform the specified processing. |
|
Process() | Executes a process that is associated with the IProcessable with the default type. |
|
Process(ProcessType) | Executes a process that is associated with the IProcessable with the specified type. |
|
Process(ProcessType, ErrorConfiguration) | Executes a process that is associated with the IProcessable with the specified process type error configuration. |
|
Process(ProcessType, ErrorConfiguration, XmlaWarningCollection) | Executes a process that is associated with the IProcessable with the specified process type, error configuration and warnings. |
|
Process(ProcessType, ErrorConfiguration, XmlaWarningCollection, ImpactDetailCollection) | Executes a process that is associated with the IProcessable with the specified process type, error configuration, warnings and impact details. |
|
Process(ProcessType, ErrorConfiguration, XmlaWarningCollection, ImpactDetailCollection, Boolean) | Executes a process that is associated with the IProcessable with the specified process type, error configuration, warnings and impact details. |
See Also
Microsoft.AnalysisServices Namespace
Return to top