/* -*- C++ -*- */ #ifndef _HANDLE_THR_STREAM_H #define _HANDLE_THR_STREAM_H #include "ace/Acceptor.h" #include "ace/Svc_Handler.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "ace/Service_Types.h" #if defined (ACE_HAS_THREADS) template class Handle_Thr_Acceptor : public ACE_Strategy_Acceptor // = TITLE // This factory creates new and runs them with the // configured . { public: Handle_Thr_Acceptor (void); ~Handle_Thr_Acceptor (void); // = Dynamic linking hooks. virtual int init (int argc, ACE_TCHAR *argv[]); virtual int info (ACE_TCHAR **, size_t) const; virtual int fini (void); private: ACE_Thread_Manager thr_mgr_; // Thread manager. ACE_Thread_Strategy thr_strategy_; // Threading strategy. int thr_flags_; // Threading flags. }; template class CLI_Stream : public ACE_Svc_Handler // = TITLE // This class interacts with the client, running in a separate // thread and handles connections from remote TCP/IP connections. { public: CLI_Stream (ACE_Thread_Manager * = 0); virtual int open (void *); // Open the service. virtual int close (u_long); // Close down the service. virtual int svc (void); // Execute the service. protected: typedef ACE_Svc_Handler inherited; }; extern ACE_Service_Object_Type rts; #if defined (ACE_TEMPLATES_REQUIRE_SOURCE) #include "Handle_Thr_Stream.cpp" #endif /* ACE_TEMPLATES_REQUIRE_SOURCE */ #endif /* ACE_HAS_THREADS */ #endif /* _HANDLE_THR_STREAM_H */