Exemple #1
0
    def __init__(self, args):        
        Proceso.__init__(self,args)

        self.numero = args[4]
        self.duracion = int(args[5])
Exemple #2
0
 def __init__(self,args):
     Proceso.__init__(self,args)
     self.duracion = int(args[4])
Exemple #3
0
    def __init__(self, args):        
        Proceso.__init__(self,args)

        self.numero = args[4]
        self.mensaje = args[5]
        self.duracion = math.ceil(len(self.mensaje)*0.02)
Exemple #4
0
 def __init__(self, args):        
     Proceso.__init__(self,args)
     
     self.nombreContacto = args[4]
     self.numeroContacto = args[5]
Exemple #5
0
 def __init__(self, args):        
     Proceso.__init__(self,args)
     self.duracion = 2
Exemple #6
0
	def __init__(self, nombre, tiempo,  sistema, recursos, prioridad):
		Proceso.__init__(self, nombre, tiempo, sistema, recursos)

		self.prioridad = prioridad
Exemple #7
0
    def __init__(self, nombre, tiempo, sistema, recursos):
        Proceso.__init__(self, nombre, tiempo, sistema, recursos)

        self.cuanto = 0