FlowSyncOptions
Implements the workflow data synchronization configuration options interface.
The FlowSyncOptions class provides the concrete implementation of the IFlowSyncOptions interface for managing workflow data synchronization. It uses JSON serialization with custom converters to handle the concrete types of its properties:
- MatchingOptions: Uses ConcreteConverter<FlowMatchingOptions> for JSON serialization
- SourceOptions: Uses ConcreteConverter<FlowSourceOptions> for JSON serialization
- TargetOptions: Uses ConcreteConverter<FlowTargetOptions> for JSON serialization
This class serves as the main configuration container for workflow data synchronization operations, providing concrete implementations for all the necessary options while ensuring proper JSON serialization of its properties.
Properties
Name | Description |
---|---|
TargetOptions | Gets or sets the concrete implementation of target options for data synchronization. |
MatchingOptions | Gets or sets the concrete implementation of matching options for source and target data. |
SourceOptions | Gets or sets the concrete implementation of source options for data synchronization. |