C# Class RecurringIntegrationApp.DataFlowNetworkStrategy

Abstraction for picking a strategy to process the data files. Implement this strategy class and plugin via the FileProcessor to automate file processing with a different state machine or with a different implementation logic.
Afficher le fichier Open project: Microsoft/Dynamics-AX-Integration Class Usage Examples

Méthodes publiques

Méthode Description
DataFlowNetworkStrategy ( DIXFRecurringJobsProcessor view ) : System

Ctor

Initialize ( ) : void

Initialize the data network

PostMessageAsync ( ClientDataMessage dataMessage ) : System.Threading.Tasks.Task

Post a message to start processing

TearDown ( ) : void

Tear down/cleanup the data flow network

Method Details

DataFlowNetworkStrategy() public méthode

Ctor
public DataFlowNetworkStrategy ( DIXFRecurringJobsProcessor view ) : System
view DIXFRecurringJobsProcessor Form object
Résultat System

Initialize() public abstract méthode

Initialize the data network
public abstract Initialize ( ) : void
Résultat void

PostMessageAsync() public méthode

Post a message to start processing
public PostMessageAsync ( ClientDataMessage dataMessage ) : System.Threading.Tasks.Task
dataMessage ClientDataMessage ClientDataMessage instance
Résultat System.Threading.Tasks.Task

TearDown() public abstract méthode

Tear down/cleanup the data flow network
public abstract TearDown ( ) : void
Résultat void