Ben Crowhurst
Ben Crowhurst
Is there any documentation regarding how to use this project?
``` python @step( u'I create a "([^"]*)" with the definition:$' ) def i_create_a_resource_with_the_definition( step, resource ): body = "" if step.multiline != "": definition = json.loads( step.multiline ) body =...
https://pabloariasal.github.io/2018/02/19/its-time-to-do-cmake-right/
We plan on releasing Restbed 5 with a minimum standard set to C++17. Please discuss any objections to this move.
Now the API has largely settled down begin the refactor of the Service.
``` C++ auto settings = make_shared< Settings >( ); Service service; service.add_application_layer( http_10_instance ); service.add_application_layer( http_11_instance ); service.add_application_layer( http2_instance ); service.add_application_layer( spdy_instance ); service.start( settings ); ```
Allow a resource cache to be injected into the service. This cache would be consulted with the incoming request `m_cache->find_entry( request )` to determine if we should call the method...
**Brief** Give greater control over error path logic. As shown in the example below, supplying an error_handler will override any Service and/or Resource error handlers. **Example** ``` C++ void post_method_handler(...
``` C++ void get_property( const std::string& name, int& value, const int default_value = 0 ) const; void get_property( const std::string& name, long& value, const long default_value = 0 ) const;...