| Submitter | Dongxiao Xu |
|---|---|
| Date | Feb. 23, 2012, 1:47 p.m. |
| Message ID | <57dafede0ad2dc7fa1f9dda6c1f9c5e97676d841.1330003017.git.dongxiao.xu@intel.com> |
| Download | mbox | patch |
| Permalink | /patch/21687/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/lib/bb/event.py b/lib/bb/event.py index 8d7f941..10036c0 100644 --- a/lib/bb/event.py +++ b/lib/bb/event.py @@ -467,3 +467,16 @@ class LogHandler(logging.Handler): def filter(self, record): record.taskpid = worker_pid return True + +class RequestPackageInfo(Event): + """ + Event to request package information + """ + +class PackageInfo(Event): + """ + Package information for GUI + """ + def __init__(self, pkginfolist): + Event.__init__(self) + self._pkginfolist = pkginfolist
RequestPackageInfo is triggered by GUI client to request the available package information. PackageInfo event is to pass package information back to GUI. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> --- lib/bb/event.py | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-)