Public Member Functions | |
virtual bool | Wait () |
wait for something to do, return true fi there is work | |
virtual void | Do () |
do the work. |
Definition at line 1841 of file gGame.cpp.
virtual bool gNetIdler::Wait | ( | ) | [inline, virtual] |
wait for something to do, return true fi there is work
Implements rSysDep::rNetIdler.
Definition at line 1844 of file gGame.cpp.
References nBasicNetworkSystem::Select(), and sn_BasicNetworkSystem.
01844 : 01845 virtual bool Wait() 01846 { 01847 return sn_BasicNetworkSystem.Select( 0.1 ); }
virtual void gNetIdler::Do | ( | ) | [inline, virtual] |
do the work.
Implements rSysDep::rNetIdler.
Definition at line 1848 of file gGame.cpp.
01850 { 01851 tAdvanceFrame(); 01852 sg_Receive(); 01853 sn_SendPlanned();