17 #ifndef __TBB_flow_graph_abstractions_H    18 #define __TBB_flow_graph_abstractions_H    22 namespace interface11 {
    36 template <
typename Input>
 virtual void release_wait()=0
Inform a graph that a previous call to reserve_wait is no longer in effect.
 
Input input_type
Type of inputing data into FG.
 
Pure virtual template classes that define interfaces for async communication.
 
virtual void reserve_wait()=0
Inform a graph that messages may come from outside, to prevent premature graph completion.
 
virtual bool try_put(const input_type &)=0
Submit signal from an asynchronous activity to FG.