Interface ContextAction<T>

Record Components:
T - the type of the return value of action execution

public interface ContextAction<T>
Interface to represent arbitrary action that requires to have Context object associated with the current thread for its execution.
  • Method Summary

    Modifier and Type
    Method
    Description
    Execute action using the supplied Context instance.
  • Method Details

    • run

      T run(Context cx)
      Execute action using the supplied Context instance. When Rhino runtime calls the method, cx will be associated with the current thread as active context.
      See Also: