class documentation

class DeadProcess(Process):

Constructor: DeadProcess(p)

View In Hierarchy

Container class to maintain information about a process that has died. This container allows us to delete the actual Process but still maintain the metadata

Method __init__ Undocumented
Method get_info Get all data about this process in dictionary form @return: dictionary of all relevant process properties @rtype: dict { str: val }
Method is_alive Undocumented
Method start Undocumented
Instance Variable exit_code Undocumented
Instance Variable info Undocumented
Instance Variable lock Undocumented
Instance Variable spawn_count Undocumented

Inherited from Process:

Method __str__ Undocumented
Method get_exit_description Undocumented
Method should_respawn floating point seconds until respawn otherwise
Method stop Stop the process. Record any significant error messages in the errors parameter
Instance Variable args Undocumented
Instance Variable env Undocumented
Instance Variable name Undocumented
Instance Variable package Undocumented
Instance Variable required Undocumented
Instance Variable respawn Undocumented
Instance Variable respawn_delay Undocumented
Instance Variable time_of_death Undocumented
def __init__(self, p):
def get_info(self):

Get all data about this process in dictionary form @return: dictionary of all relevant process properties @rtype: dict { str: val }

def is_alive(self):
def start(self):
info =

Undocumented