Cyclone ISO C++ API Reference Guide
WaitSet.hpp
Go to the documentation of this file.
1 #ifndef OMG_TDDS_CORE_WAIT_SET_HPP_
2 #define OMG_TDDS_CORE_WAIT_SET_HPP_
3 
4 /* Copyright 2010, Object Management Group, Inc.
5  * Copyright 2010, PrismTech, Corp.
6  * Copyright 2010, Real-Time Innovations, Inc.
7  * All rights reserved.
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21 
22 #include <vector>
23 
24 #include <dds/core/types.hpp>
25 #include <dds/core/Duration.hpp>
27 
28 namespace dds
29 {
30 namespace core
31 {
32 namespace cond
33 {
34 
35 class WaitSet;
36 }
37 }
38 }
39 
40 
111 {
112 public:
113  typedef std::vector<dds::core::cond::Condition> ConditionSeq;
114 
115 public:
118 
119 public:
129  WaitSet();
130 
132  ~WaitSet();
135 public:
175  const ConditionSeq wait(const dds::core::Duration& timeout);
176 
207  const ConditionSeq wait();
208 
250  ConditionSeq& wait(ConditionSeq& triggered,
251  const dds::core::Duration& timeout);
252 
285  ConditionSeq& wait(ConditionSeq& triggered);
286 
287 public:
303  void dispatch();
304 
326  void dispatch(const dds::core::Duration& timeout);
327 
328 public:
331 
334 
357 
376 
394  const ConditionSeq conditions() const;
395 
414  ConditionSeq& conditions(ConditionSeq& conds) const;
415 };
416 
417 #endif /* OMG_TDDS_CORE_WAIT_SET_HPP_ */
dds::core::cond::WaitSet::operator-=
WaitSet & operator-=(const dds::core::cond::Condition &cond)
dds::core::cond::WaitSet::conditions
const ConditionSeq conditions() const
types.hpp
dds::core::cond::WaitSet::WaitSet
WaitSet()
dds::core::Duration
Definition: Duration.hpp:42
OMG_DDS_IMPLICIT_REF_BASE
#define OMG_DDS_IMPLICIT_REF_BASE(TYPE)
Definition: refmacros.hpp:75
dds::core::cond::WaitSet::operator+=
WaitSet & operator+=(const dds::core::cond::Condition &cond)
dds::core::cond::WaitSet::attach_condition
WaitSet & attach_condition(const dds::core::cond::Condition &cond)
dds::core::cond::WaitSet::wait
const ConditionSeq wait()
Duration.hpp
dds::core::cond::WaitSet
A WaitSet object allows an application to wait until one or more of the attached Condition objects ha...
Definition: WaitSet.hpp:110
dds::core::Reference
Base class for reference-counted objects.
Definition: Reference.hpp:94
dds
Definition: array.hpp:30
dds::core::cond::WaitSet::ConditionSeq
std::vector< dds::core::cond::Condition > ConditionSeq
Definition: WaitSet.hpp:113
dds::core::cond::WaitSet::detach_condition
bool detach_condition(const dds::core::cond::Condition &cond)
Condition.hpp
OMG_DDS_REF_TYPE_NO_DC
#define OMG_DDS_REF_TYPE_NO_DC(TYPE, BASE, DELEGATE)
Definition: refmacros.hpp:178
dds::core::cond::Condition
This class is the base class for all the conditions that may be attached to a dds::core::cond::WaitSe...
Definition: Condition.hpp:58
dds::core::cond::WaitSet::dispatch
void dispatch()