Package whitewerx.com.trapos.disruptor

Examples of whitewerx.com.trapos.disruptor.PortfolioPositionEventHandler


     * @param positionBarrier
     * @return
     */
    private EventProcessor createPortfolioPositionProcessor(RingBuffer<MarketEvent> ringBuffer,
            SequenceBarrier positionBarrier) {
        PortfolioPositionEventHandler portfolioPositionHandler = new PortfolioPositionEventHandler();
        EventProcessor portfolioPositionProcessor = new BatchEventProcessor<MarketEvent>(ringBuffer, positionBarrier,
                portfolioPositionHandler);
        eventProcessors[2] = portfolioPositionProcessor;
        return portfolioPositionProcessor;
    }
View Full Code Here

TOP

Related Classes of whitewerx.com.trapos.disruptor.PortfolioPositionEventHandler

Copyright © 2018 www.massapicom. 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.