class documentation
        
        class Process:
Represents some basic information about a process.
Warnings
This object is not meant to be constructed directly. Use OssiContext.process instead.
| Method | __init__ | 
    Initializes a new Process instance from a low-level object. | 
  
| Method | __repr__ | 
    Undocumented | 
| Method | __str__ | 
    Returns the nicely printable string representation of this instance. | 
| Property | asid | 
    Property: The address-space IDentifier of the process | 
| Property | name | 
    Property: The name of the process | 
| Property | pid | 
    Property: The Process IDentifier of the process | 
| Property | ppid | 
    Property: The PID of the parent of the process | 
| Instance Variable | _rvn | 
    Undocumented | 
    
    def __init__(self, _rvn_process):
    
  
  Initializes a new Process instance from a low-level object.
Warnings
This object is not meant to be constructed directly. Use OssiContext.process instead.
Information
| Parameters | |
_rvn_reven_api.Process | low-level process | 
    
    def __str__(self):
    
  
  Returns the nicely printable string representation of this instance.
| Returns | |
str | Undocumented |