You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 11, 2023. It is now read-only.
Allow programmer to write same code for different possible environments.
For instance:
valpipeline:DataPipelineT[F, A, Sequential] =???valpipeline2:DataPipelineT[F, A, Akka[NotUsed] OrSpark]
.to[Akka[NotUsed]]
.orTo[Spark](condition =???)
. // some possible heavy operations
This should allow more flexible applicaitons which can be run on different environments depending on some condition (for isntance amount of your data).
Additionaly such implicit derivation should work:
Allow programmer to write same code for different possible environments.
For instance:
This should allow more flexible applicaitons which can be run on different environments depending on some condition (for isntance amount of your data).
Additionaly such implicit derivation should work:
And this shouldn't
The text was updated successfully, but these errors were encountered: