Interface Processor<T extends Event>

    • Method Detail

      • process

        void process​(ShutdownEvent event)
        Deprecated.
        Method to process ShutdownEvent. This method will be called only once.
        Please make sure to add @Subscribe annotation to the method that is implementing this method.
        Parameters:
        event - ShutdownEvent to process
      • process

        void process​(T event)
        Deprecated.
        Method to process Event. If your method can process multiple events simultaneously, then mark your method with @AllowConcurrentEvents annotation.Please make sure to add @Subscribe annotation to the method that is implementing this method.
        Parameters:
        event - Event to process