Skip to content

TimedTask

Adam Furman edited this page Mar 20, 2016 · 1 revision

###TimedTask class The TimedTask class is a subclass of Task that executes at a specific time. Like Task, it does not support event triggers. To run, the TimedTask must be added to a Controller. Once the specified time has passed, the specified method will execute (with additional data being passed as requested), and the TimedTask will terminate itself.

TimedTask ( datetime executeOn, method, *additionalData )

Object Variables

  • Inherited
  • datetime.datetime executionTime The time at which to execute the TimedTask. if the time has already occurred, the method will run immediately.

Methods

  • Inherited
  • run () Calculates the time delta between the executionTime and the current time, and runs the method.

Home

Getting Started

Documentation

Threads and Tasks

Applications and Notifications

The State Class and Variable

The GUI, Events, Resources, and Dialogs

The following classes are all under the GUI class, e.g. Font is actually accessed as GUI.Font.

  • Font class
  • Icons class
  • ColorPalette class
  • LongClickEvent class
  • IntermediateUpdateEvent class
  • EventQueue class
  • FunctionBar class
  • Keyboard class
  • Overlay class
  • Dialog class
    • OKDialog dialog
    • ErrorDialog dialog
    • WarningDialog dialog
    • YNDialog dialog
    • OKCancelDialog dialog
    • AskDialog dialog
    • CustomContentDialog dialog
  • NotificationMenu overlay
    • RecentAppSwitcher overlay
    • Selector overlay

GUI Components and Containers

  • Component class

The following classes are all Components, they inherit from that class.

  • Container component
  • AppContainer container
  • Button container
  • KeyboardButton container
  • TextEntryField container
  • PagedContainer container
    • GriddedPagedContainer container
    • ListedPagedContainer container
  • ButtonRow container
  • ScrollableContainer container
    • ListScrollableContainer container
    • TextScrollableContainer container
    • MultiLineTextEntryField container
  • Text component
  • MultiLineText component
  • ExpandingMultiLineText component
  • Image component
  • Slider component
  • Checkbox component
  • Switch component
  • Canvas component
  • ScrollIndicator component
Clone this wiki locally