Datatype Channel

The Datatype Channel for each data type is a pattern that makes sure that a certain data consumer receives messages of a certain type.

In theory, this pattern can be implemented with Datamin, using the same approach that is used for Message Router.

However, this is what we don't recommend in case you have many different data types. If you have various data message types, there is no need to create one pipeline that accepts messages and distributes them because at some point it can grow too much a might become an unmaintainable bottleneck.

Instead, we recommend you use the API Endpoint to trigger pipelines and trigger pipelines directly. One pipeline for each data type.

Last updated