Interface IFlowEventQueueRepository
Assembly: Simplic.Flow.EventQueue.dll
Syntax
public interface IFlowEventQueueRepository
Methods
|
Improve this Doc
View Source
ClearEventQueue()
Declaration
|
Improve this Doc
View Source
Get(String)
Declaration
EventQueueModel Get(string id)
Parameters
Type |
Name |
Description |
System.String |
id |
|
Returns
|
Improve this Doc
View Source
GetAll()
Declaration
IEnumerable<EventQueueModel> GetAll()
Returns
|
Improve this Doc
View Source
GetAllUnhandled(String, String)
Declaration
IEnumerable<EventQueueModel> GetAllUnhandled(string machineName, string serviceName)
Parameters
Type |
Name |
Description |
System.String |
machineName |
|
System.String |
serviceName |
|
Returns
|
Improve this Doc
View Source
GetEventTargets()
Declaration
IList<EventServiceTarget> GetEventTargets()
Returns
|
Improve this Doc
View Source
Remove(String)
Declaration
Parameters
Type |
Name |
Description |
System.String |
id |
|
|
Improve this Doc
View Source
Save(EventQueueModel)
Declaration
bool Save(EventQueueModel model)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
SetFailed(String)
Declaration
bool SetFailed(string id)
Parameters
Type |
Name |
Description |
System.String |
id |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
SetHandled(String, Boolean)
Declaration
bool SetHandled(string id, bool isHandled)
Parameters
Type |
Name |
Description |
System.String |
id |
|
System.Boolean |
isHandled |
|
Returns
Type |
Description |
System.Boolean |
|