Examples of ReferenceDataEvent


Examples of com.activequant.tools.streaming.ReferenceDataEvent

        transportFactory.getPublisher(transportType, mde.getMdiId()).send(se);
       
        // send also to virtex exchange layer.
        exchange.processStreamEvent(se);
      } else if (transportType.equals(ETransportType.REF_DATA)) {
        ReferenceDataEvent rde = (ReferenceDataEvent) se;
        transportFactory.getPublisher(transportType,
            rde.getInstrument()).send(se);
      } else if (transportType.equals(ETransportType.TRAD_DATA)) {
        TradingDataEvent tde = (TradingDataEvent) se;
        transportFactory.getPublisher(transportType, tde.getTradInst())
            .send(se);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.