mirror of
https://github.com/oatpp/oatpp.git
synced 2025-03-31 18:30:22 +08:00
Add links to API docs
This commit is contained in:
parent
88cdd6c0ac
commit
ef7d50c4a5
@ -426,7 +426,7 @@ public:
|
||||
|
||||
/**
|
||||
* Free Coroutine instance.
|
||||
* See `AbstractCoroutine::free()`
|
||||
* See &l:AbstractCoroutine::free ();.
|
||||
*/
|
||||
void free() override {
|
||||
Coroutine<T>::getBench().free(static_cast<T*>(this));
|
||||
@ -523,7 +523,7 @@ public:
|
||||
|
||||
/**
|
||||
* Free Coroutine instance.
|
||||
* See `AbstractCoroutine::free()`
|
||||
* See &l:AbstractCoroutine::free ();.
|
||||
*/
|
||||
virtual void free() override {
|
||||
CoroutineWithResult<T, Args...>::getBench().free(static_cast<T*>(this));
|
||||
|
@ -40,7 +40,7 @@ namespace oatpp { namespace async {
|
||||
|
||||
/**
|
||||
* Asynchronous Executor.<br>
|
||||
* Executes coroutines in multiple `oatpp::async::Processor`
|
||||
* Executes coroutines in multiple &id:oatpp::async::Processor;
|
||||
* allocating one thread per processor.
|
||||
*/
|
||||
class Executor {
|
||||
|
@ -36,12 +36,12 @@ namespace oatpp { namespace base{
|
||||
class Countable {
|
||||
public:
|
||||
/**
|
||||
* Constructor. Increment counter calling `oatpp::base::Environment::incObjects()`.
|
||||
* Constructor. Increment counter calling &id:oatpp::base::Environment::incObjects;.
|
||||
*/
|
||||
Countable();
|
||||
|
||||
/**
|
||||
* Virtual destructor. Decrement counter calling `oatpp::base::Environment::decObjects()`.
|
||||
* Virtual destructor. Decrement counter calling &id:oatpp::base::Environment::decObjects;.
|
||||
*/
|
||||
virtual ~Countable();
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user