I am developing a dataflow library for java, and I would like to give names to classes as it is customary to computer science. For example, I have following dataflow construct:
it has 2 input queues, one for messages and one for actors (actors in sense of the Actor computing model).
whenever both queues are not empty, take the next message and send it to the next actor; remove both message and actor from the queue.
I would like to know if a traditional term for such a construct exists, and better yet, if there is a dictionary with all dataflow terms.