MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ remove_conditional_hook()

bool MayaFlux::Nodes::ChainNode::remove_conditional_hook ( const NodeCondition callback)
inlineoverridevirtual

Removes a previously registered conditional callback.

Parameters
callbackThe condition function to remove
Returns
True if the callback was found and removed, false otherwise

This method delegates to the target node's remove_conditional_hook method, removing the conditional callback from the target node's notification system.

Reimplemented from MayaFlux::Nodes::Node.

Definition at line 113 of file NodeStructure.hpp.

114 {
115 return m_Target->remove_conditional_hook(callback);
116 }
std::shared_ptr< Node > m_Target
The downstream node that processes the source's output.