16#ifndef dealii_subscriptor_h
17#define dealii_subscriptor_h
118 subscribe(std::atomic<bool> *
const validity,
119 const std::string & identifier =
"")
const;
129 const std::string & identifier =
"")
const;
142 template <
typename StreamType>
166 <<
"Object of class " << arg2 <<
" is still used by " << arg1
169 <<
"(Additional information: " << arg3 <<
")\n\n"
170 <<
"See the entry in the Frequently Asked Questions of "
171 <<
"deal.II (linked to from http://www.dealii.org/) for "
172 <<
"a lot more information on what this error means and "
173 <<
"how to fix programs in which it happens.");
182 <<
"No subscriber with identifier <" << arg2
183 <<
"> subscribes to this object of class " << arg1
184 <<
". Consequently, it cannot be unsubscribed.");
200 template <
class Archive>
202 serialize(Archive &ar,
const unsigned int version);
308template <
class Archive>
316template <
typename StreamType>
320 std::lock_guard<std::mutex> lock(
mutex);
323 stream << it.second <<
'/' <<
counter <<
" subscriptions from \""
324 << it.first <<
'\"' << std::endl;
Subscriptor & operator=(const Subscriptor &)
#define DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_CLOSE
std::vector< std::atomic< bool > * > validity_pointers
void unsubscribe(std::atomic< bool > *const validity, const std::string &identifier="") const
std::atomic< unsigned int > counter
void check_no_subscribers() const noexcept
void list_subscribers() const
const std::type_info * object_info
void subscribe(std::atomic< bool > *const validity, const std::string &identifier="") const
static ::ExceptionBase & ExcInUse(int arg1, std::string arg2, std::string arg3)
void serialize(Archive &ar, const unsigned int version)
std::map< std::string, unsigned int > counter_map
#define DeclException2(Exception2, type1, type2, outsequence)
static ::ExceptionBase & ExcNoSubscriber(std::string arg1, std::string arg2)
#define DeclException3(Exception3, type1, type2, type3, outsequence)
decltype(counter_map)::iterator map_iterator
decltype(counter_map)::value_type map_value_type
unsigned int n_subscriptions() const