iactionhandler.cs
来自「工作流的基本资料(文档资料」· CS 代码 · 共 27 行
CS
27 行
namespace NetBpm.Workflow.Delegation
{
/// <summary> is the delegation-interface for the execution of process-initiated actions.
/// <p>Interactions are used to communicate with the existing infrastructure in an organisation.
/// The {@link InteractionContext} allows the Interaction-developer to access all information
/// about the process instance.
/// </p>
///
/// NetBpm provides a lot of ready-to-use, configurable interactions such as...
/// <ul>
/// <li>DB-query of update</li>
/// <li>Sending an email</li>
/// <li>Calling one or more web-services</li>
/// <li>Interacting with an ERP-package over JCA</li>
/// <li>Sending an EDI-message</li>
/// <li>Putting a message on an enterprise service bus</li>
/// <li>...</li>
/// </ul>
/// </summary>
public interface IActionHandler
{
/// <summary> implements the process-initiated action.</summary>
/// <param name="actionContext">is the object that allows the Interaction-implementator to communicate with the NetBpm process engine.
/// </param>
void Run(IActionContext actionContext); /* added throws Exception, could be remove if found unnecessary */
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?