File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -387,14 +387,14 @@ inline void IAsyncQueueDispatcherBase::request_base_t::notify()
387
387
}
388
388
389
389
/* *
390
- * Required accessible methods of class being CRTP parameter:
390
+ * Required accessible public methods of class being CRTP parameter:
391
391
*
392
- * void init(internal_state_t* state ); // required only in case of custom internal state
392
+ * void init(internal_state_t*); // required only in case of custom internal state
393
393
*
394
- * void exit(internal_state_t* state ); // optional, no `state` parameter in case of no internal state
394
+ * void exit(internal_state_t*); // optional, no `state` parameter in case of no internal state
395
395
*
396
396
* // no `state` parameter in case of no internal state
397
- * void process_request(request_metadata_t& req , internal_state_t& state );
397
+ * void process_request(future_base_t*, request_metadata_t&, internal_state_t&);
398
398
*
399
399
* void background_work() // optional, does nothing if not provided
400
400
*
You can’t perform that action at this time.
0 commit comments