public void startInstrumentFeedA()

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


    public void startInstrumentFeedA() throws MdpFeedException {
        if (instrumentFeedA == null) {
            synchronized (this) {
                if (instrumentFeedA == null) {
                    instrumentFeedA = new MdpFeedWorker(channelCfg.getConnectionCfg(FeedType.N, Feed.A), instrumentFeedAni, rcvBufSize);
                    instrumentFeedA.addListener(this.mdpFeedListener);
                }
            }
        }
        if (!instrumentFeedA.cancelShutdownIfStarted()) {
            if (!instrumentFeedA.isActive()) {
                instrumentFeedAThread = new Thread(instrumentFeedA);
                instrumentFeedAThread.start();
            }
        }
    }