Interface ICallableStep<T>

  • Type Parameters:
    T - - return type of call method, i.e. Event, SortableEvent
    All Superinterfaces:
    Callable<T>, IPipelineStep

    public interface ICallableStep<T>
    extends IPipelineStep, Callable<T>
    Step that implements the Callable interface and can be run concurrently.
    • Method Detail

      • getMainStep

        IPipelineStep getMainStep()
        Gets the main step wrapped by ICallableStep
        Returns:
        the main step
      • processNow

        Event processNow​(Event event)
        process the event now without threading. Normally used for initialization events such as START_BATCH etc.
        Parameters:
        event - - event to be processed
        Returns:
        the resulting event