Home
Channels is a TCP/UDP communication library that uses middleware to adapt and deliver data.
The concept behind this library is to apply a middleware pipeline to data coming in and out from the open communication channels.
For data coming through the channel input, two middleware components can be applied: adapters and handlers.
graph LR;
channelInput((Input)) --> a1[/Adapter/]
subgraph adapters
a1 --> a2[/Adapter/]
end
a2 --> h1[/Handler/]
a2 --> h2[/Handler/]
For data going through the channel output, only adapters are applicable, although there is an internal handler that writes the actual data to the underlying socket.
graph LR;
openChannel((Channel)) --> a1[/Adapter/]
subgraph adapters
a1 --> a2[/Adapter/]
end
a2 --> channelOutput([Output])
Learn more about middleware.
Related Projects
The following are projects that use or extend the functionality of this library.