I need to implement a communication protocol in VB.net 2010. Kind of an OSI model/architecture, but smaller using a vb class for each layer, how can I link them efficiently?
Normally, the communication buffer would travel from the bottom to the top or top to bottom. For now, I have a main class where each layer is declared and I use delegates in each layer to link it with the upper and lower layer.
Is there any kind of pattern that I can use?