Ordering of out of band notifications
The following guidelines describe when out of band connection and disconnection messages are received, and how this interacts with the framework provided to IAF adapters:
Transports and codecs will not be sent events until after their start function has been called and completed. Transports should not start generating events until their start function has been called. The first event that is delivered after the start function is called will be a SenderConnected or ReceiverConnected event, if the semantic mapper is configured to pass them through. An adapter will always receive the SenderConnected before it begins to receive any other events, but the ordering of the ReceiverConnected and SenderConnected events is not guaranteed.
If a correlator (or other component) disconnects or terminates while the adapter is running, the adapter will receive both ReceiverDisconnected and SenderDisconnected events. Again, the ordering of these events is not guaranteed. Once a SenderDisconnected event is received, no further events from that correlator will be received until a SenderConnected event is received. When a ReceiverDisconnected event is received, no more events will be sent to that correlator until a ReceiverConnected event is received. Note that in this situation, some previously sent events may not yet have reached that correlator. The events will be discarded (or sent to other receivers, if other receivers are connected).
On a reload of an adapter, the adapter will be stopped, new configuration loaded, and the adapter restarted. During this period, the IAF will not drop its connection unless the configuration of which components to connect to has changed. As such, if prior to stopping for a reload the correlator was connected, it is safe to assume that it remains connected unless, on reload, the adapters receive SenderDisconnected or ReceiverDisconnected events.
During a reload, the IAF can also load new adapters. In this event, as the IAF may already have a connection open, no ReceiverConnected or ReceiverDisconnected event may be received by the new adapters. It is thus recommended to not change transports and codecs when reconfiguring the IAF if the adapters depend on receiving the out of band events. In practice, it is unusual to change the loaded transports or codecs.
Once an adapter has entered a stopped state, it will not receive any further events (unless it later re-enters a started state). Since the shutdown order of the IAF is to move all adapters to their stopped state, then disconnect from downstream processes, adapters will not receive a final disconnected event. Therefore, the adapter may need to notify external systems on the stop function being called, as well as on disconnected events.
The following topics describe the ordering the transport will see of calls to start, stop and the transport receiving out of band and normal events.
When starting the IAF
IAF begins initialization
Adapters initialize
IAF connects to correlator
[IAF receives
SenderConnected and
ReceiverConnected - these are queued]
Adapter changes state to Started
Prior to receiving any other events, the semantic mapper (and then codec and adapter) receive the now unqueued out of band
SenderConnected and
ReceiverConnected events.
The
SenderConnected event will arrive before any other events from said sender are delivered
IAF shutdown requested
Adapters state changes from started to stopped
IAF disconnects from correlator
Because transport is in state
stopped, no events are received
IAF terminates
IAF Configuration Reload
Transport is in state
startedIAF transitions transport to state
stoppedIAF keeps its connection to the correlator up
IAF transitions transport to state started
Transport checks state, notices that it believes a connection is up, and continues to work without any changes
IAF Configuration reload changes correlator connection
Transport is in state
startedIAF transitions transport to state
stoppedIAF breaks its connection to the correlator
IAF receives
ReceiverDisconnected and
SenderDisconnectedSince the transports are stopped, these events are queued
IAF opens a new connection to a new correlator
IAF receives
ReceiverConnected and
SenderConnectedSince the transports are stopped, these events are queued
IAF transitions transport to state started
Transport checks state, notices that it believes a connection is up, and continues to work without any changes
Prior to receiving any other events, the
ReceiverDisconnected and
SenderDisconnected events are received
Following these, but prior to receiving any other events, the
ReceiverConnected and
SenderConnected events are received
The transport can then behave as if a new connection has been made
Correlator dies (and a new one is started) while the IAF is running
Transport is in state
startedCorrelator breaks its connection to the IAF
IAF receives
ReceiverDisconnected and
SenderDisconnectedTransport receives
ReceiverDisconnected and
SenderDisconnectedFollowing
SenderDisconnected no more events should arrive from the correlator
Time passes
A new correlator makes a connection to the IAF
IAF receives
ReceiverConnected and
SenderConnectedTransport receives
ReceiverConnected and
SenderConnectedThe transport can now behave as if a new connection has been made