summaryrefslogtreecommitdiff
path: root/TAO/tao/Queued_Message.inl
blob: 501ae013eac2086955b6e4d69da71899d991baa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// $Id$

ACE_INLINE int
TAO_Queued_Message::done (void) const
{
  // @@ Actually we should have a status() method that returns not
  //    only if there is more data, but also indicates if there was a
  //    failure.
  return (this->data_sent_successfully_ == 1
          || this->connection_closed_ == 1);
}

ACE_INLINE TAO_Queued_Message *
TAO_Queued_Message::next (void) const
{
  return this->next_;
}

ACE_INLINE TAO_Queued_Message *
TAO_Queued_Message::prev (void) const
{
  return this->prev_;
}