public void startIncrementalFeedB()

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


    public void startIncrementalFeedB() throws MdpFeedException {
        if (incrementalFeedB == null) {
            synchronized (this) {
                if (incrementalFeedB == null) {
                    incrementalFeedB = new MdpFeedWorker(channelCfg.getConnectionCfg(FeedType.I, Feed.B), incrementalFeedBni, rcvBufSize);
                    incrementalFeedB.addListener(this.mdpFeedListener);
                }
            }
        }
        if (!incrementalFeedB.cancelShutdownIfStarted()) {
            if (!incrementalFeedB.isActive()) {
                incrementalFeedBThread = new Thread(incrementalFeedB);
                incrementalFeedBThread.start();
            }
        }
    }