Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
Loading...
Searching...
No Matches
duckdb::ExecutionContext Class Reference
Collaboration diagram for duckdb::ExecutionContext:

Public Member Functions

 ExecutionContext (ClientContext &client_p, ThreadContext &thread_p, optional_ptr< Pipeline > pipeline_p)
 

Public Attributes

ClientContextclient
 The client-global context; caution needs to be taken when used in parallel situations.
 
ThreadContextthread
 The thread-local context for this execution.
 
optional_ptr< Pipelinepipeline
 Reference to the pipeline for this execution, can be used for example by operators determine caching strategy.
 

Constructor & Destructor Documentation

◆ ExecutionContext()

duckdb::ExecutionContext::ExecutionContext ( ClientContext client_p,
ThreadContext thread_p,
optional_ptr< Pipeline pipeline_p 
)
inline
20422 : client(client_p), thread(thread_p), pipeline(pipeline_p) {
20423 }
ClientContext & client
The client-global context; caution needs to be taken when used in parallel situations.
Definition duckdb.hpp:20426
optional_ptr< Pipeline > pipeline
Reference to the pipeline for this execution, can be used for example by operators determine caching ...
Definition duckdb.hpp:20430
ThreadContext & thread
The thread-local context for this execution.
Definition duckdb.hpp:20428

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