Viam C++ SDK current
|
A GenericService
represents any service that can execute arbitrary commands.
More...
#include "services/generic/generic.hpp"
Public Member Functions | |
virtual ProtoStruct | do_command (const ProtoStruct &command)=0 |
Send/receive arbitrary commands to the resource. | |
API | api () const override |
Creates a GenericService API . | |
![]() | |
Name | get_resource_name () const override |
Returns the Name for a particular resource. | |
![]() | |
Resource (std::string name) | |
virtual std::string | name () const |
Return the resource's name. | |
Protected Member Functions | |
GenericService (std::string name) | |
![]() | |
Service (std::string name) | |
![]() | |
Name | get_resource_name (const std::string &type) const |
A GenericService
represents any service that can execute arbitrary commands.
This acts as an abstract base class to be inherited from by any drivers representing specific generic service implementations. This class cannot be used on its own.
|
overridevirtual |
Creates a GenericService
API
.
Implements viam::sdk::Resource.
|
pure virtual |
Send/receive arbitrary commands to the resource.
command | the command to execute. |
Implemented in viam::sdk::impl::GenericServiceClient.