You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The GatewayStreamer object is instantiated in the BaseGateway. The CompositeGateway itself is a sub class of the BaseGateway and the respective protocol specific Gateway is also a sub class of the BaseGateway. Which means that there is at least one streamer object for the CompositeGateway class and one for each protocol specific gateway. This complicates the warmup logic (#5467) because by default only the CompositeGateway streamer object is being triggered. Using a single streamer object is more compact and reduces the overhead of creating multiple connection pools within each streamer object.
The text was updated successfully, but these errors were encountered:
The
GatewayStreamer
object is instantiated in theBaseGateway
. TheCompositeGateway
itself is a sub class of theBaseGateway
and the respective protocol specificGateway
is also a sub class of theBaseGateway
. Which means that there is at least one streamer object for theCompositeGateway
class and one for each protocol specific gateway. This complicates the warmup logic (#5467) because by default only theCompositeGateway
streamer object is being triggered. Using a single streamer object is more compact and reduces the overhead of creating multiple connection pools within each streamer object.The text was updated successfully, but these errors were encountered: