contextApi.h
Go to the documentation of this file.
35 typedef boost::function<void(boost::system::error_code, std::list<std::string> devices)> devices_list_handler_function;
42 typedef boost::function<void(boost::system::error_code, std::string memoryType)> memory_type_handler_function;
49 typedef boost::function<void(boost::system::error_code, unsigned int contextSize)> context_size_handler_function;
56 typedef boost::function<void(boost::system::error_code, std::string data)> get_context_handler_function;
105 void asyncGetMemoryValues(dpyContext::get_context_handler_function handler, std::string deviceid, unsigned int position, unsigned int length);
114 void asyncSetMemoryValues(dpyContext::result_handler_function handler, std::string deviceid, unsigned int position, const std::string& data);
121 void asyncGetMemoryType(dpyContext::memory_type_handler_function handler, std::string deviceid);
128 void asyncGetContextSize(dpyContext::context_size_handler_function handler, std::string deviceid);
Deepsy SERVICE_NAME namespace that includes the different enums, structs or method signatures that sh...
Definition: contextApi.h:15
boost::function< void(boost::system::error_code, unsigned int contextSize)> context_size_handler_function
Prototype of the handler function for getting context memory size.
Definition: contextApi.h:49
boost::function< void(boost::system::error_code, std::string memoryType)> memory_type_handler_function
Prototype of the handler function for getting context memory type.
Definition: contextApi.h:42
boost::function< void(boost::system::error_code, std::list< std::string > devices)> devices_list_handler_function
Prototype of the handler function for getting available context devices.
Definition: contextApi.h:35
boost::function< void(boost::system::error_code, std::string data)> get_context_handler_function
Prototype of the handler function for getting context memory content.
Definition: contextApi.h:56
Definition: contextApi.h:67
boost::function< void(boost::system::error_code error_code)> result_handler_function
Prototype of the handler function for obtaining a result.
Definition: contextApi.h:28