2016-02-08 | Paul Boddie | file changeset files shortlog | Added a journal storage area, maintaining quota and collective scheduling data for scheduling decisions. Introduced confirmation and retraction functions for resource scheduling so that quotas and collective schedules can be maintained and thus queried by scheduling functions. Updated the documentation, tools and tests. |
paul@0 | 1 | #!/usr/bin/env python |
paul@0 | 2 | |
paul@49 | 3 | from imiptools import Processor |
paul@57 | 4 | from imiptools.handlers import resource |
paul@12 | 5 | |
paul@57 | 6 | Processor(resource.handlers)() |
paul@0 | 7 | |
paul@0 | 8 | # vim: tabstop=4 expandtab shiftwidth=4 |