Class FlowContext

    • Constructor Detail

      • FlowContext

        public FlowContext​(Progress progress)
        Creates a new instance using the given progress indicator.
        Parameters:
        progress - the progress indicator to signal progress when executing the tasks
    • Method Detail

      • timeout

        public static boolean timeout​(Object error)
        Method to check if the error in a catch callback is due to a timeout.
      • resolve

        public <C extends FlowContext> elemental2.promise.Promise<C> resolve()
        Resolves this context successfully as a promise.
      • resolve

        public <C extends FlowContext,​T> elemental2.promise.Promise<C> resolve​(T value)
        Pushes the value on top of the stack and resolves this context successfully as a promise.
      • resolve

        public <C extends FlowContext,​T> elemental2.promise.Promise<C> resolve​(String key,
                                                                                     T value)
        Stores the value under the given key in the map and resolves this context successfully as a promise.
      • reject

        public <C extends FlowContext> elemental2.promise.Promise<C> reject​(Object error)
      • push

        public <T> void push​(T value)
        Pushes the value om top of the stack.
      • pop

        public <T> T pop()
        Removes the object at the top of the stack and returns that object.
        Returns:
        The object at the top of the stack.
        Throws:
        EmptyStackException - if this stack is empty.
      • pop

        public <T> T pop​(T defaultValue)
        Removes the object at the top of the stack and returns that object or returns the default value, if the stack is empty.
        Returns:
        The object at the top of the stack or the default value if the stack is empty.
      • emptyStack

        public boolean emptyStack()
        Returns:
        true if the stack is empty, false otherwise.
      • set

        public <T> void set​(String key,
                            T value)
        Stores the value under the given key in the map.
      • get

        public <T> T get​(String key)
        Returns:
        the object for the given key from the map or null if no such key was found.
      • get

        public <T> T get​(String key,
                         T defaultValue)
        Returns:
        the object for the given key from the context map or defaultValue if no such key was found.
      • keys

        public Set<String> keys()
        Returns:
        the set of keys stored in the map.
      • progress

        public Progress progress()
        Returns the progress indicator for the execution of the tasks.
      • status

        public FlowStatus status()
        Returns:
        the execution status of this context
      • successful

        public boolean successful()
        Returns:
        whether the execution was successful
      • timeout

        public boolean timeout()
        Returns:
        whether the execution ran into a timeout
      • failure

        public boolean failure()
        Returns:
        whether the execution failed
      • failureReason

        public String failureReason()
        Returns:
        the failure or null if the execution was successful or ran into a timeout