ME 305 Group 6 Documentation
Classes
printqueue.py File Reference

Implements a basic print queue to pass print statements to task User. More...

Classes

class  printqueue.PrintJob
 A print job containing a string of text to print and an optional timeout parameter. More...
 
class  printqueue.PrintQueue
 A queue of print jobs to be printed by the user interface. More...
 

Detailed Description

Implements a basic print queue to pass print statements to task User.

A class for printing all in one place.

Using a queue, pass print statements to the taskUser function so other tasks do not need to print.

Author
Caleb Savard
Chris Linthacum
Date
February 17, 2022

Using queues, printing can all happen in one place, while any function can add a job to the queue.

Author
Chris Linthacum
Date
March 18, 2022