Public Member Functions | List of all members
cudf::io::sink_info Struct Reference

Destination information for write interfaces. More...

#include <types.hpp>

Public Member Functions

 sink_info (size_t num_sinks)
 Construct a new sink info object. More...
 
 sink_info (std::vector< std::string > const &file_paths)
 Construct a new sink info object for multiple files. More...
 
 sink_info (std::string const &file_path)
 Construct a new sink info object for a single file. More...
 
 sink_info (std::vector< std::vector< char > * > const &buffers)
 Construct a new sink info object for multiple host buffers. More...
 
 sink_info (std::vector< char > *buffer)
 Construct a new sink info object for a single host buffer. More...
 
 sink_info (std::vector< cudf::io::data_sink * > const &user_sinks)
 Construct a new sink info object for multiple user-implemented sinks. More...
 
 sink_info (class cudf::io::data_sink *user_sink)
 Construct a new sink info object for a single user-implemented sink. More...
 
auto type () const
 Get the type of the input. More...
 
auto num_sinks () const
 Get the number of sinks. More...
 
auto const & filepaths () const
 Get the filepaths of the input. More...
 
auto const & buffers () const
 Get the host buffers of the input. More...
 
auto const & user_sinks () const
 Get the user sinks of the input. More...
 

Detailed Description

Destination information for write interfaces.

Definition at line 469 of file io/types.hpp.

Constructor & Destructor Documentation

◆ sink_info() [1/7]

cudf::io::sink_info::sink_info ( size_t  num_sinks)
inline

Construct a new sink info object.

Parameters
num_sinksNumber of sinks

Definition at line 476 of file io/types.hpp.

◆ sink_info() [2/7]

cudf::io::sink_info::sink_info ( std::vector< std::string > const &  file_paths)
inlineexplicit

Construct a new sink info object for multiple files.

Parameters
file_pathsOutput files paths

Definition at line 483 of file io/types.hpp.

◆ sink_info() [3/7]

cudf::io::sink_info::sink_info ( std::string const &  file_path)
inlineexplicit

Construct a new sink info object for a single file.

Parameters
file_pathSingle output file path

Definition at line 493 of file io/types.hpp.

◆ sink_info() [4/7]

cudf::io::sink_info::sink_info ( std::vector< std::vector< char > * > const &  buffers)
inlineexplicit

Construct a new sink info object for multiple host buffers.

Parameters
buffersOutput host buffers

Definition at line 503 of file io/types.hpp.

◆ sink_info() [5/7]

cudf::io::sink_info::sink_info ( std::vector< char > *  buffer)
inlineexplicit

Construct a new sink info object for a single host buffer.

Parameters
bufferSingle output host buffer

Definition at line 512 of file io/types.hpp.

◆ sink_info() [6/7]

cudf::io::sink_info::sink_info ( std::vector< cudf::io::data_sink * > const &  user_sinks)
inlineexplicit

Construct a new sink info object for multiple user-implemented sinks.

Parameters
user_sinksOutput user-implemented sinks

Definition at line 519 of file io/types.hpp.

◆ sink_info() [7/7]

cudf::io::sink_info::sink_info ( class cudf::io::data_sink user_sink)
inlineexplicit

Construct a new sink info object for a single user-implemented sink.

Parameters
user_sinkSingle output user-implemented sink

Definition at line 529 of file io/types.hpp.

Member Function Documentation

◆ buffers()

auto const& cudf::io::sink_info::buffers ( ) const
inline

Get the host buffers of the input.

Returns
The host buffers of the input

Definition at line 557 of file io/types.hpp.

◆ filepaths()

auto const& cudf::io::sink_info::filepaths ( ) const
inline

Get the filepaths of the input.

Returns
The filepaths of the input

Definition at line 551 of file io/types.hpp.

◆ num_sinks()

auto cudf::io::sink_info::num_sinks ( ) const
inline

Get the number of sinks.

Returns
The number of sinks

Definition at line 545 of file io/types.hpp.

◆ type()

auto cudf::io::sink_info::type ( ) const
inline

Get the type of the input.

Returns
The type of the input

Definition at line 539 of file io/types.hpp.

◆ user_sinks()

auto const& cudf::io::sink_info::user_sinks ( ) const
inline

Get the user sinks of the input.

Returns
The user sinks of the input

Definition at line 563 of file io/types.hpp.


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