CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
service.Service Class Reference
Inheritance diagram for service.Service:

Public Member Functions

def start
 
def stop
 

Detailed Description

Basic service interface.

Definition at line 1 of file service.py.

Member Function Documentation

def service.Service.start (   self)
Start the service.
Called by the looper, not by the user.

Definition at line 3 of file service.py.

Referenced by progressbar.ProgressBar.__next__().

3 
4  def start(self):
5  '''Start the service.
6  Called by the looper, not by the user.
7  '''
8  pass
def service.Service.stop (   self)
Stop the service.
Called by the looper, not by the user.

Definition at line 9 of file service.py.

9 
10  def stop(self):
11  '''Stop the service.
12  Called by the looper, not by the user.
13  '''
14  pass