Package 

Interface UserActionRunnable

    • Method Summary

      Modifier and Type Method Description
      abstract void performAction(@Nullable() Context context, @NonNull() String identifier, @NonNull() JSONObject args, @Nullable() UserActionSource source) Perform the requested action defined by the given parameters.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • performAction

         abstract void performAction(@Nullable() Context context, @NonNull() String identifier, @NonNull() JSONObject args, @Nullable() UserActionSource source)

        Perform the requested action defined by the given parameters.Note: This can be run from any thread. Do not make assumptions about the thread you're currently on.

        Parameters:
        context - The current context, if applicable.
        identifier - The action identifier.
        args - Action arguments.
        source - The action source.