00001 #ifndef EVENT_LOOP_BACKGROUND_WORKER_HH
00002 #define EVENT_LOOP_BACKGROUND_WORKER_HH
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #include <EventLoop/Global.h>
00015
00016 #include <EventLoop/Worker.h>
00017
00018 namespace EL
00019 {
00022
00023 class BackgroundWorker : public Worker
00024 {
00025
00026
00027
00028
00034 public:
00035 static void execute (int socket);
00036
00037
00041 public:
00042 void testInvariant () const;
00043
00044
00050 public:
00051 BackgroundWorker (const BackgroundJob& job, TList *output);
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072 };
00073 }
00074
00075 #endif