public void startInstrumentFeedB()

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


    public void startInstrumentFeedB() throws MdpFeedException {
        if (instrumentFeedB == null) {
            synchronized (this) {
                if (instrumentFeedB == null) {
                    instrumentFeedB = new MdpFeedWorker(channelCfg.getConnectionCfg(FeedType.N, Feed.B), instrumentFeedBni, rcvBufSize);
                    instrumentFeedB.addListener(this.mdpFeedListener);
                }
            }
        }
        if (!instrumentFeedB.cancelShutdownIfStarted()) {
            if (!instrumentFeedB.isActive()) {
                instrumentFeedBThread = new Thread(instrumentFeedB);
                instrumentFeedBThread.start();
            }
        }
    }