Skip to content

Move things, from A to B as simple as possible

Notifications You must be signed in to change notification settings

hikaruhk/FromAToB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FromAToB (Moving data from A To B)

A simple library that will allow you to move data from one or many data sources to one or many destinations. This project is mostly created to increase my knowledge with Rx.

How to use? (more examples comming soon)

 await Source
	.FromStream(memoryStream, 2048, 0) //buffer size and initial offset
	.And()
	.FromHttpGet("https://google.com", httpClient)
	.ToConsole(bytes => Encoding.UTF8.GetString(bytes)) //Entwined results from both stream and HTTP
	.Start(CancellationToken.None); //Executes the pipeline

While this is still being built, the usability of this library will the main focus from here on out. This library is not meant to be used in anything serious.

About

Move things, from A to B as simple as possible

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages