Interface IFlowService
Namespace: Simplic.Flow
Assembly: Simplic.Flow.dll
Syntax
public interface IFlowService
Methods
| Improve this Doc View SourceEnqueueEvent(FlowEventArgs)
Enqueue new event
Declaration
void EnqueueEvent(FlowEventArgs args)
Parameters
Type | Name | Description |
---|---|---|
FlowEventArgs | args | Event arguments |
Initialize(String, String)
Initialize service
Declaration
void Initialize(string machineName, string serviceName)
Parameters
Type | Name | Description |
---|---|---|
System.String | machineName | Machine name |
System.String | serviceName | Service name |
Run()
Run processing cycle
Declaration
void Run()
Events
| Improve this Doc View SourceOnCompleted
Raised when the service is done processing all events and workflows
Declaration
event EventHandler OnCompleted
Event Type
Type | Description |
---|---|
System.EventHandler |
OnStarted
Raised when the service has just started processing.
Declaration
event EventHandler OnStarted
Event Type
Type | Description |
---|---|
System.EventHandler |