> I am new to the Disruptor framework and discovered it through a talk by
> Martin and Michael. The talk covered how the network was a single producer,
> with multiple consumers in a custom topology. I could not quite understand
> how the network could be a single producer given multiple clients,
> connections etc.
All of the data for those connections will come through a single
point. The network interface. So it is not strictly true that you
will have a single producer for your network traffic, but
possibly/probably one per network interface.
> What kind of a topology do people use when connecting Disruptor to a
> traditional JVM networking solution like Netty where there are multiple
> producers?
We have a thread per network interface. We recently reduced the
number of network buses that we receive messages on from 2 to 1 to
allow us to move to a strict single producer model. Other may do it
differently.
Mike.