C# 클래스 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.
파일 보기 프로젝트 열기: Microsoft/Dynamics-AX-Integration 1 사용 예제들

공개 메소드들

메소드 설명
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

메소드 상세

DataFlowNetworkStrategy() 공개 메소드

Ctor
public DataFlowNetworkStrategy ( DIXFRecurringJobsProcessor view ) : System
view DIXFRecurringJobsProcessor Form object
리턴 System

Initialize() 공개 추상적인 메소드

Initialize the data network
public abstract Initialize ( ) : void
리턴 void

PostMessageAsync() 공개 메소드

Post a message to start processing
public PostMessageAsync ( ClientDataMessage dataMessage ) : System.Threading.Tasks.Task
dataMessage ClientDataMessage ClientDataMessage instance
리턴 System.Threading.Tasks.Task

TearDown() 공개 추상적인 메소드

Tear down/cleanup the data flow network
public abstract TearDown ( ) : void
리턴 void