All Classes Files Functions Enumerations Enumerator Pages
Public Member Functions | List of all members
kvikio::RemoteEndpoint Class Referenceabstract

Abstract base class for remote endpoints. More...

#include <remote_handle.hpp>

Inheritance diagram for kvikio::RemoteEndpoint:
kvikio::HttpEndpoint kvikio::S3Endpoint

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...
 

Detailed Description

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.

Member Function Documentation

◆ setopt()

virtual void kvikio::RemoteEndpoint::setopt ( CurlHandle curl)
pure virtual

Set needed connection options on a curl handle.

Subsequently, a call to curl.perform() should connect to the endpoint.

Parameters
curlThe curl handle.

Implemented in kvikio::S3Endpoint, and kvikio::HttpEndpoint.

◆ str()

virtual std::string kvikio::RemoteEndpoint::str ( ) const
pure virtual

Get a description of this remote point instance.

Returns
A string description.

Implemented in kvikio::S3Endpoint, and kvikio::HttpEndpoint.


The documentation for this class was generated from the following file: