~openstack-gd/nova/lp785816-joinedload

« back to all changes in this revision

Viewing changes to nova/service.py

  • Committer: Todd Willey
  • Date: 2010-11-07 19:51:40 UTC
  • mto: (386.2.41 trunkdoc)
  • mto: This revision was merged to the branch mainline in revision 398.
  • Revision ID: todd@ansolabs.com-20101107195140-djbg5mkmbz0jc03w
Merge lp:~termie/nova/trunkdoc (via patch, since bzr though it was already merged)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
#    under the License.
18
18
 
19
19
"""
20
 
Generic Node baseclass for all workers that run on hosts
 
20
A service is a very thin wrapper around a Manager object.  It exposes the
 
21
manager's public methods to other components of the system via rpc.  It will
 
22
report state periodically to the database and is responsible for initiating any periodic tasts that need to be executed on a given host.
 
23
 
 
24
This module contains Service, a generic baseclass for all workers.
21
25
"""
22
26
 
23
27
import inspect