![]() |
IRSOL
C++ code implementing socket server for interacting with Baumer camera.
|
Handler for inquiry of the input sequence length parameter. More...
#include <inquiry_input_sequence_length.hpp>
Public Member Functions | |
InquiryInputSequenceLengthHandler (std::shared_ptr< Context > ctx) | |
Constructs the InquiryInputSequenceLengthHandler. | |
![]() | |
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 input sequence length. | |
![]() | |
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 input sequence length parameter.
Processes inquiry messages to retrieve the current input sequence length setting.
Definition at line 24 of file inquiry_input_sequence_length.hpp.
irsol::server::handlers::InquiryInputSequenceLengthHandler::InquiryInputSequenceLengthHandler | ( | std::shared_ptr< Context > | ctx | ) |
Constructs the InquiryInputSequenceLengthHandler.
ctx | Handler context. |
Definition at line 9 of file inquiry_input_sequence_length.cpp.
|
finaloverrideprotected |
Processes an inquiry message to retrieve the input sequence length.
session | The client session. |
message | The inquiry message. |
Definition at line 14 of file inquiry_input_sequence_length.cpp.