public void startSnapshotFeedA()

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


    public void startSnapshotFeedA() throws MdpFeedException {
        if (snapshotFeedA == null) {
            synchronized (this) {
                if (snapshotFeedA == null) {
                    snapshotFeedA = new MdpFeedWorker(channelCfg.getConnectionCfg(FeedType.S, Feed.A), snapshotFeedAni, rcvBufSize);
                    snapshotFeedA.addListener(this.mdpFeedListener);
                }
            }
        }
        if (!snapshotFeedA.cancelShutdownIfStarted()) {
            if (!snapshotFeedA.isActive()) {
                snapshotFeedAThread = new Thread(snapshotFeedA);
                snapshotFeedAThread.start();
            }
        }
    }