Abstract base class for remote endpoints. More...
#include <remote_handle.hpp>
Public Member Functions | |
virtual void | setopt (CurlHandle &curl)=0 |
Set needed connection options on a curl handle. More... | |
virtual std::string | str () const =0 |
Get a description of this remote point instance. More... | |
Abstract base class for remote endpoints.
In this context, an endpoint refers to a remote file using a specific communication protocol.
Each communication protocol, such as HTTP or S3, needs to implement this ABC and implement its own ctor that takes communication protocol specific arguments.
Definition at line 47 of file remote_handle.hpp.
|
pure virtual |
Set needed connection options on a curl handle.
Subsequently, a call to curl.perform()
should connect to the endpoint.
curl | The curl handle. |
Implemented in kvikio::S3Endpoint, and kvikio::HttpEndpoint.
|
pure virtual |
Get a description of this remote point instance.
Implemented in kvikio::S3Endpoint, and kvikio::HttpEndpoint.