lib/curl/Request: add methods StartIndirect(), StopIndirect()
This commit is contained in:
parent
55d1473918
commit
edcd0b9913
@ -32,6 +32,7 @@
|
||||
#include "Global.hxx"
|
||||
#include "Version.hxx"
|
||||
#include "Handler.hxx"
|
||||
#include "event/Call.hxx"
|
||||
#include "util/RuntimeError.hxx"
|
||||
#include "util/StringStrip.hxx"
|
||||
#include "util/StringView.hxx"
|
||||
@ -80,6 +81,14 @@ CurlRequest::Start()
|
||||
registered = true;
|
||||
}
|
||||
|
||||
void
|
||||
CurlRequest::StartIndirect()
|
||||
{
|
||||
BlockingCall(global.GetEventLoop(), [this](){
|
||||
Start();
|
||||
});
|
||||
}
|
||||
|
||||
void
|
||||
CurlRequest::Stop() noexcept
|
||||
{
|
||||
@ -90,6 +99,14 @@ CurlRequest::Stop() noexcept
|
||||
registered = false;
|
||||
}
|
||||
|
||||
void
|
||||
CurlRequest::StopIndirect()
|
||||
{
|
||||
BlockingCall(global.GetEventLoop(), [this](){
|
||||
Stop();
|
||||
});
|
||||
}
|
||||
|
||||
void
|
||||
CurlRequest::FreeEasy() noexcept
|
||||
{
|
||||
|
@ -93,6 +93,11 @@ public:
|
||||
*/
|
||||
void Start();
|
||||
|
||||
/**
|
||||
* A thread-safe version of Start().
|
||||
*/
|
||||
void StartIndirect();
|
||||
|
||||
/**
|
||||
* Unregister this request via CurlGlobal::Remove().
|
||||
*
|
||||
@ -100,6 +105,11 @@ public:
|
||||
*/
|
||||
void Stop() noexcept;
|
||||
|
||||
/**
|
||||
* A thread-safe version of Stop().
|
||||
*/
|
||||
void StopIndirect();
|
||||
|
||||
CURL *Get() noexcept {
|
||||
return easy.Get();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user