BCTaskObject Class |
Namespace: BlueCieloECM.InnoCielo.Meridian.Server
The BCTaskObject type exposes the following members.
Name | Description | |
---|---|---|
BCTaskObject |
Initializes a new instance of the BCTaskObject class.
|
Name | Description | |
---|---|---|
Description |
Gets a descriptive text about the task.
| |
IsDisposed |
Gets a value indicating whether the object has been disposed of.
| |
Repository |
Gets the current transaction object the instance was initialized with.
|
Name | Description | |
---|---|---|
Dispose |
Releases the object explicitly.
| |
Equals | (Inherited from Object.) | |
Finalize | (Inherited from Object.) | |
GetHashCode | (Inherited from Object.) | |
GetType | (Inherited from Object.) | |
MemberwiseClone | (Inherited from Object.) | |
OnConnect |
Called when the Task server connects to a vault.
| |
OnDispose |
The method is called on the Dispose method call.
Derived classes should override the method to perform custom disposing.
| |
OnExecute |
Called when the Task server executes the task.
| |
OnInitialize |
Called when the object is being initialized with a repository.
| |
ThrowIfDisposed |
Throws the ObjectDisposedException exception if
the object has been disposed.
| |
ToString | (Inherited from Object.) |
The Task Server service itself does not perform tasks. It can be thought of as a central task controller, able to receive incoming task requests from client applications and delegate execution to specified tasks. Tasks are performed by special components called task server extensions. Task server extensions are to the Task Server what user interface extensions are to the PowerUser client application; they extend the Task Server with specific task functionality.
This class implements the IAMTask interface defined in the BlueCieloECM.AMTask PIA. The interface enables creation of a user-defined COM object that can be invoked by the Task server service.
To define an object that can be invoked by the Meridian Task server, you should inherit from this class, make the derived class visible to COM (ComVisibleAttribute) and specify the ProgID of the class (ProgIdAttribute).
The code will be executed in-process by the Task Server service, and should not use any User Interface components.
Use the Repository property to get the current transaction object the instance was initialized with.