Interface IActivityContext.IActivity

All Known Implementing Classes:
ActivityStack.Activity
Enclosing interface:
IActivityContext

public static interface IActivityContext.IActivity
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    append​(String text)
    Append text to the activity description
    void
    append​(String textFormat, Object... args)
    Append text to the activity description
    void
    end()
    End this activity and remove it (and any descendants)
    void
    next​(String description)
    End this activity (and any descendants) and begin the next activity using the same activity handle
    void
    next​(String descriptionFormat, Object... args)
    End this activity (and any descendants) and begin the next activity using the same activity handle
  • Method Details

    • next

      void next(String descriptionFormat, Object... args)
      End this activity (and any descendants) and begin the next activity using the same activity handle
      Parameters:
      descriptionFormat - New activity description format
      args - New activity description args
    • next

      void next(String description)
      End this activity (and any descendants) and begin the next activity using the same activity handle
      Parameters:
      description - New activity description
    • end

      void end()
      End this activity and remove it (and any descendants)
    • append

      void append(String textFormat, Object... args)
      Append text to the activity description
      Parameters:
      textFormat - Format for text to append
      args - Format args
    • append

      void append(String text)
      Append text to the activity description
      Parameters:
      text - Text to append