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::GlobalSourceState Class Reference
Inheritance diagram for duckdb::GlobalSourceState:
Collaboration diagram for duckdb::GlobalSourceState:

Public Member Functions

virtual idx_t MaxThreads ()
 
template<class TARGET >
TARGETCast ()
 
template<class TARGET >
const TARGETCast () const
 
- Public Member Functions inherited from duckdb::StateWithBlockableTasks
unique_lock< mutex > Lock ()
 
void PreventBlocking (const unique_lock< mutex > &guard)
 
bool BlockTask (const unique_lock< mutex > &guard, const InterruptState &interrupt_state)
 Add a task to 'blocked_tasks' before returning SourceResultType::BLOCKED (must hold the lock)
 
bool CanBlock (const unique_lock< mutex > &guard) const
 
bool UnblockTasks (const unique_lock< mutex > &guard)
 Unblock all tasks (must hold the lock)
 
SinkResultType BlockSink (const unique_lock< mutex > &guard, const InterruptState &interrupt_state)
 
SourceResultType BlockSource (const unique_lock< mutex > &guard, const InterruptState &interrupt_state)
 
void VerifyLock (const unique_lock< mutex > &guard) const
 

Constructor & Destructor Documentation

◆ ~GlobalSourceState()

virtual duckdb::GlobalSourceState::~GlobalSourceState ( )
inlinevirtual
22043 {
22044 }

Member Function Documentation

◆ MaxThreads()

virtual idx_t duckdb::GlobalSourceState::MaxThreads ( )
inlinevirtual
22046 {
22047 return 1;
22048 }

◆ Cast() [1/2]

template<class TARGET >
TARGET & duckdb::GlobalSourceState::Cast ( )
inline
22051 {
22052 DynamicCastCheck<TARGET>(this);
22053 return reinterpret_cast<TARGET &>(*this);
22054 }

◆ Cast() [2/2]

template<class TARGET >
const TARGET & duckdb::GlobalSourceState::Cast ( ) const
inline
22056 {
22057 DynamicCastCheck<TARGET>(this);
22058 return reinterpret_cast<const TARGET &>(*this);
22059 }

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