Skip to content

Move data from one point to another, and apply transformations

License

Notifications You must be signed in to change notification settings

Jefwillems/DataPipelines

Repository files navigation

Data pipelines

Usage

builder.Services.AddPipeline<InputData, OutputData>(conf =>
{
    conf.AddAmqpSource(config => builder.Configuration.GetSection("Amqp").Bind(config))
        .SetTransformer<MyTransformer>();
});
builder.Services.AddPipeline<InputData,OutputData>(conf =>
{
    conf.SetSource<MySource>()
        .SetTransformer<MyTransformer>()
        .SetDestination<MyDestination>();
});

About

Move data from one point to another, and apply transformations

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages