Interface MessageProcessor

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface MessageProcessor
    Interface for code that processes single InstrumentMessage.
    • Method Detail

      • process

        void process​(deltix.qsrv.hf.pub.InstrumentMessage message)
        Process single message. Method implementations should not block. Method should not throw any exceptions unless it want to abort any further processing.
        Parameters:
        message - message to process