public void startIncrementalFeedA()

in mbp-only/src/main/java/com/epam/cme/mdp3/core/channel/MdpChannelImpl.java [294:309]


    public void startIncrementalFeedA() throws MdpFeedException {
        if (incrementalFeedA == null) {
            synchronized (this) {
                if (incrementalFeedA == null) {
                    incrementalFeedA = new MdpFeedWorker(channelCfg.getConnectionCfg(FeedType.I, Feed.A), incrementalFeedAni, rcvBufSize);
                    incrementalFeedA.addListener(this.mdpFeedListener);
                }
            }
        }
        if (!incrementalFeedA.cancelShutdownIfStarted()) {
            if (!incrementalFeedA.isActive()) {
                incrementalFeedAThread = new Thread(incrementalFeedA);
                incrementalFeedAThread.start();
            }
        }
    }