Defined in File meta.hpp
-
struct MessageMetaInterfaceProxy
Interface proxy, used to insulate python bindings.
Public Static Functions
-
static std::shared_ptr<MessageMeta> init_cpp(const std::string &filename)
Initialize MessageMeta cpp object with the given filename.
- Parameters
filename – : Filename for loading the data on to MessageMeta
- Returns
std::shared_ptr<MessageMeta>
-
static std::shared_ptr<MessageMeta> init_python(pybind11::object &&data_frame)
Initialize MessageMeta cpp object with a given dataframe and returns shared pointer as the result.
- Parameters
data_frame – : Dataframe that contains the data
- Returns
std::shared_ptr<MessageMeta>
-
static cudf::size_type count(MessageMeta &self)
Get messages count.
- Parameters
self –
- Returns
cudf::size_type
-
static pybind11::object get_data_frame(MessageMeta &self)
Get the data frame object.
- Parameters
self –
- Returns
pybind11::object
-
static std::shared_ptr<MessageMeta> init_cpp(const std::string &filename)