![]() |
IRSOL
C++ code implementing socket server for interacting with Baumer camera.
|
Handler for inquiry of the camera integration time (exposure). More...
#include <inquiry_integration_time.hpp>
Public Member Functions | |
InquiryIntegrationTimeHandler (std::shared_ptr< Context > ctx) | |
Constructs the InquiryIntegrationTimeHandler. | |
![]() | |
virtual std::vector< out_message_t > | operator() (const irsol::types::client_id_t &clientId, T &&message) |
Invokes the handler for a given client and message. | |
Protected Member Functions | |
std::vector< out_message_t > | process (std::shared_ptr< irsol::server::ClientSession > session, protocol::Inquiry &&message) final override |
Processes an inquiry message to retrieve the integration time. | |
![]() | |
HandlerBase (std::shared_ptr< Context > ctx) | |
Constructs the handler base. | |
virtual std::vector< out_message_t > | process (std::shared_ptr< irsol::server::ClientSession > session, T &&message)=0 |
Processes the protocol message for the given session. | |
Additional Inherited Members | |
![]() | |
std::shared_ptr< Context > | ctx |
Handler context (provides access to app and utilities). | |
Handler for inquiry of the camera integration time (exposure).
Processes inquiry messages to retrieve the current camera integration time.
Definition at line 24 of file inquiry_integration_time.hpp.
irsol::server::handlers::InquiryIntegrationTimeHandler::InquiryIntegrationTimeHandler | ( | std::shared_ptr< Context > | ctx | ) |
Constructs the InquiryIntegrationTimeHandler.
ctx | Handler context. |
Definition at line 11 of file inquiry_integration_time.cpp.
|
finaloverrideprotected |
Processes an inquiry message to retrieve the integration time.
session | The client session. |
message | The inquiry message. |
Definition at line 16 of file inquiry_integration_time.cpp.