summaryrefslogtreecommitdiff
path: root/protocols/ace/RMCast/RMCast_Resend_Worker.h
blob: 03fd81e2a0565725b9609e06655b62ed957f69fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* -*- C++ -*- */
// $Id$

#ifndef ACE_RMCAST_RESEND_WORKER_H
#define ACE_RMCAST_RESEND_WORKER_H
#include "ace/pre.h"

#include "RMCast.h"
#include "RMCast_Copy_On_Write.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

class ACE_RMCast_Module;

/// Process an Ack message in the ACE_RMCast_Retransmission module
/**
 * The retransmission module uses internal iterators, thus it needs to
 * create helper Worker classes to process some messages.
 */
class ACE_RMCast_Resend_Worker
  : public ACE_RMCast_Worker<ACE_UINT32,ACE_RMCast::Data>
{
public:
  ACE_RMCast_Resend_Worker (ACE_RMCast_Module *next,
                            ACE_UINT32 max_sequence_number);

  virtual int work (ACE_UINT32 const & key,
                    ACE_RMCast::Data const &item);

  int n;

private:
  ACE_RMCast_Module *next_;

  ACE_UINT32 max_sequence_number_;

private:
  ACE_RMCast_Resend_Worker (const ACE_RMCast_Resend_Worker&);
  ACE_RMCast_Resend_Worker& operator= (const ACE_RMCast_Resend_Worker&);
};

#if defined (__ACE_INLINE__)
#include "RMCast_Resend_Worker.i"
#endif /* __ACE_INLINE__ */

#include "ace/post.h"
#endif /* ACE_RMCAST_RESEND_WORKER_H */