Is there a way that I can set up my thread to route to /dev/null without creating an extra file thread to write to /dev/null?
I have a receive interface that is receiving several message types I don’t need to route to anyone. I’d like to route the message types I need to the sending thread but throw the rest of the message types away. How can I do this without creating a extra thread to write to /dev/null? If I just leave them unrouted they’ll junk up my error logs.