Show
Ignore:
Timestamp:
04/10/04 00:24:47 (20 years ago)
Author:
jalet
Message:

Began work on correct handling of child processes when jobs are cancelled by
the user. Especially important when an external requester is running for a
long time.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/requesters/snmp.py

    r1257 r1433  
    2222# 
    2323# $Log$ 
     24# Revision 1.14  2004/04/09 22:24:47  jalet 
     25# Began work on correct handling of child processes when jobs are cancelled by 
     26# the user. Especially important when an external requester is running for a 
     27# long time. 
     28# 
    2429# Revision 1.13  2004/01/08 14:10:33  jalet 
    2530# Copyright year changed. 
     
    7681class Requester : 
    7782    """A class to send queries to printers via SNMP.""" 
    78     def __init__(self, printername, arguments) : 
     83    def __init__(self, kotabackend, printername, arguments) : 
    7984        """Sets instance vars depending on the current printer.""" 
     85        self.kotabackend = kotabackend 
    8086        self.printername = printername 
    8187        args = [x.strip() for x in arguments.split(',')]