agent.py 536 Bytes
from common.agent import Agent

class DashboardAgent(Agent):
    
    #TODO : Définir comment on communique avec le dashboard, donc les messages ...
    
    def __init__(self):
        Agent.__init__(self, Agent.DASHBOARD)
        
        
    def work(self):
        '''
            Overriding Agent's method
            Start routine of the new thread.
            
            Called once before starting the communications
            
            In the Dashboard Manager, this method might do nothing
        '''

        pass